Skip to content

Commit 6ce8d29

Browse files
test: rename typescript version specific tests
1 parent 4748eef commit 6ce8d29

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

tests/rules/prefer-tacit/index.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { testUsing } from "~/tests/helpers/testers";
77
import es3Tests from "./es3";
88
import es6Tests from "./es6";
99
import tsTests from "./ts";
10-
import ts4Dot7Tests from "./ts4.7";
11-
import tsNot4Dot7Tests from "./tsNot4.7";
10+
import tsAtLeast4Dot7Tests from "./ts-at-least-4.7";
11+
import tsLessThan4Dot7Tests from "./ts-less-than-4.7";
1212

1313
const isTS4dot7 =
1414
ts !== undefined &&
@@ -17,9 +17,9 @@ const isTS4dot7 =
1717
});
1818

1919
if (isTS4dot7) {
20-
testUsing.typescript(name, rule, ts4Dot7Tests);
20+
testUsing.typescript(name, rule, tsAtLeast4Dot7Tests);
2121
} else {
22-
testUsing.typescript(name, rule, tsNot4Dot7Tests);
22+
testUsing.typescript(name, rule, tsLessThan4Dot7Tests);
2323
}
2424

2525
testUsing.typescript(name, rule, tsTests);

0 commit comments

Comments
 (0)