7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
const { defaults } = require('jest-config')
|
|
|
|
module.exports = {
|
|
testMatch: ['**/tests/**/*.[jt]s?(x)'],
|
|
testPathIgnorePatterns: [...defaults.testPathIgnorePatterns, '.history'],
|
|
}
|