aboutsummaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
Diffstat (limited to 'test/support')
-rw-r--r--test/support/seeded-runs.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/support/seeded-runs.ts b/test/support/seeded-runs.ts
index 66d6df3c..04bbd254 100644
--- a/test/support/seeded-runs.ts
+++ b/test/support/seeded-runs.ts
@@ -205,9 +205,7 @@ class TestGenerator<
*
* @param methods The names of the methods.
*/
- itEach<TMethodName extends NoArgsMethodOf<TModule>>(
- ...methods: TMethodName[]
- ): this {
+ itEach(...methods: Array<NoArgsMethodOf<TModule>>): this {
for (const method of methods) {
this.it(method);
}