diff options
Diffstat (limited to 'test/support')
| -rw-r--r-- | test/support/seededRuns.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/support/seededRuns.ts b/test/support/seededRuns.ts index aa6d5a9b..2c1cbab7 100644 --- a/test/support/seededRuns.ts +++ b/test/support/seededRuns.ts @@ -219,6 +219,7 @@ class TestGenerator< for (const method of methods) { this.it(method); } + return this; } @@ -244,6 +245,7 @@ class TestGenerator< ).toBeFalsy(); variantNames.add(name); }; + const tester: MethodTester<Module[MethodName]> = { it(name: string, ...args: Parameters<Module[MethodName]>) { expectVariantNotTested(name); @@ -279,6 +281,7 @@ class TestGenerator< for (const method of methods) { this.describe(method, factory); } + return this; }; } |
