14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
verbose: true,
|
|
collectCoverage: true,
|
|
coverageDirectory: 'coverage',
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'/tests/mocks/'
|
|
],
|
|
testMatch: [
|
|
'<rootDir>/tests/**/*.test.js'
|
|
]
|
|
};
|