You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
16 lines
355 B
3 years ago
|
module.exports = {
|
||
|
"verbose": true,
|
||
|
"preset": "jest-puppeteer",
|
||
|
"globals": {
|
||
|
"__DEV__": true
|
||
|
},
|
||
|
"testRegex": "./test/*.spec.js",
|
||
|
"rootDir": ".",
|
||
|
"testTimeout": 30000,
|
||
|
"transform": {
|
||
|
"^.+\\.js$": "babel-jest",
|
||
|
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
|
||
|
}
|
||
|
};
|
||
|
|