11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
// For a detailed explanation regarding each configuration property, visit:
|
|
// https://jestjs.io/docs/en/configuration.html
|
|
module.exports = {
|
|
// The test environment that will be used for testing
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: [
|
|
'/deps/',
|
|
'/node_modules/'
|
|
]
|
|
}
|