You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
testTimeout: 60000,
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest',
|
|
},
|
|
testRegex: '(/__tests__/.*\\.(test|spec))\\.tsx?$',
|
|
testPathIgnorePatterns: ['/node_modules/', '/dist/', '/demo/'],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
};
|