mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-22 06:56:11 +03:00
Avoid running tests twice
Jest was running both the test/xyz.ts version of the test files and the compiled dist/test/xyz.js version of the test. Removing this duplication also prevents the tests from failing.
This commit is contained in:
parent
088c438577
commit
c4972e720b
@ -4,9 +4,9 @@ function createJestConfig(_, rootDir = __dirname) {
|
||||
'.(ts|tsx)$': 'ts-jest'
|
||||
},
|
||||
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$'],
|
||||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
||||
moduleFileExtensions: ['ts', 'js'],
|
||||
collectCoverageFrom: ['src/**/*.{ts,tsx,js,jsx}'],
|
||||
testMatch: ['<rootDir>/**/*.(spec|test).{ts,tsx,js,jsx}'],
|
||||
testMatch: ['<rootDir>/test/*.(spec|test).ts'],
|
||||
testURL: 'http://localhost',
|
||||
rootDir,
|
||||
watchPlugins: [
|
||||
|
Loading…
Reference in New Issue
Block a user