move jest config files to config dir

This commit is contained in:
Louis Lam
2021-10-13 02:53:59 +08:00
parent 11c3c636e0
commit 407581ee07
8 changed files with 40 additions and 6 deletions

11
config/jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
"verbose": true,
"preset": "jest-puppeteer",
"globals": {
"__DEV__": true
},
"testRegex": "./test/e2e.spec.js",
"rootDir": "..",
"testTimeout": 30000,
};