Skip to content

Commit 03017ef

Browse files
committed
test only .vitest.ts files
1 parent 09e1eb9 commit 03017ef

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

core/jest.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@ export default {
2929
globalSetup: "<rootDir>/test/jest.global-setup.ts",
3030
setupFilesAfterEnv: ["<rootDir>/test/jest.setup-after-env.js"],
3131
maxWorkers: 1, // equivalent to CLI --runInBand
32-
// modulePathIgnorePatterns: [
33-
// "<rootDir>/config/yaml/LocalPlatformClient.test.ts",
34-
// ],
35-
testPathIgnorePatterns: [
32+
modulePathIgnorePatterns: [
3633
"<rootDir>/config/yaml/LocalPlatformClient.test.ts",
37-
"<rootDir>/autocomplete/",
3834
],
3935
};

core/vitest.config.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ export default defineConfig({
99
globalSetup: "./test/vitest.global-setup.ts",
1010
setupFiles: "./test/vitest.setup.ts",
1111
fileParallelism: false,
12-
include: [
13-
"**/*.vitest.ts",
14-
"config/yaml/LocalPlatformClient.test.ts",
15-
"autocomplete/**/*.test.ts",
16-
],
12+
include: ["**/*.vitest.ts"],
1713
},
1814
});

0 commit comments

Comments
 (0)