Skip to content

Commit 2636805

Browse files
authored
ignore js files in test phase (#162)
1 parent b335771 commit 2636805

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jest.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
22
module.exports = {
33
preset: 'ts-jest',
4-
testEnvironment: 'node'
4+
testEnvironment: 'node',
5+
testPathIgnorePatterns: [".d.ts", ".js"]
56
};

0 commit comments

Comments
 (0)