Skip to content

Commit 931df4c

Browse files
authored
test: adopt .test suffix for test files (#681)
* test: adopt `.test` suffix for test files * quote mocha test glob
1 parent 1142f8f commit 931df4c

File tree

78 files changed

+32
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+32
-32
lines changed

packages/eslint-scope/Makefile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ const NODE = "node",
4444
C8 = `${NODE} ${NODE_MODULES}/c8/bin/c8.js`,
4545

4646
// Files
47-
TEST_FILES = "tests/*.js",
48-
CJS_TEST_FILES = "tests/*.cjs";
47+
TEST_FILES = "tests/**/*.test.js",
48+
CJS_TEST_FILES = "tests/**/*.test.cjs";
4949

5050
//------------------------------------------------------------------------------
5151
// Tasks

0 commit comments

Comments
 (0)