aboutsummaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2025-04-10 20:11:35 +0200
committerGitHub <[email protected]>2025-04-10 20:11:35 +0200
commitaa2ffb48de71d799dfe9d435a719061a396ef482 (patch)
tree18deb78942a2b1963b8ae6fa6b27e3285ff30339 /test/support
parentcdf6dc4a973b8e64069f8b8d98e6921188f08575 (diff)
downloadfaker-aa2ffb48de71d799dfe9d435a719061a396ef482.tar.xz
faker-aa2ffb48de71d799dfe9d435a719061a396ef482.zip
chore(deps): update eslint (#3458)
Co-authored-by: Shinigami92 <[email protected]>
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);
}