We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c14f0 commit d5a8314Copy full SHA for d5a8314
modules/testing/builder/src/jasmine-helpers.ts
@@ -40,6 +40,9 @@ export function describeBuilder<T>(
40
optionSchema,
41
});
42
43
+ // This is needed as there are multiple describe calls for the same builder.
44
+ jasmine.getEnv().configure({ forbidDuplicateNames: false });
45
+
46
describe(options.name || builderHandler.name, () => {
47
beforeEach(async () => {
48
harness.resetProjectMetadata();
0 commit comments