mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-01 20:39:57 -05:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testRegex: '(\\.|/)test\\.[jt]s$',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: ['node_modules', 'examples'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsConfig: 'tsconfig.test.json',
|
|
},
|
|
},
|
|
}
|