12 lines
324 B
JavaScript
12 lines
324 B
JavaScript
module.exports = {
|
|
testTimeout: 10000,
|
|
reporters: [
|
|
'default'
|
|
],
|
|
watchPathIgnorePatterns: ['/node_modules/', '/dist/', '/.git/'],
|
|
moduleFileExtensions: ['js', 'json'],
|
|
rootDir: __dirname,
|
|
testMatch: ["<rootDir>/pages/**/*test.[jt]s?(x)"],
|
|
testPathIgnorePatterns: ['/node_modules/']
|
|
}
|