13 lines
191 B
JavaScript
13 lines
191 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
testPathIgnorePatterns: [
|
|
"./node_modules/"
|
|
],
|
|
unmockedModulePathPatterns: [
|
|
"./node_modules/react"
|
|
],
|
|
roots: [
|
|
"./__tests__"
|
|
],
|
|
}
|