uptime-kuma/config/jest.config.js

12 lines
210 B
JavaScript
Raw Normal View History

2021-10-08 05:35:04 +00:00
module.exports = {
"verbose": true,
"preset": "jest-puppeteer",
"globals": {
"__DEV__": true
},
2021-10-08 07:11:50 +00:00
"testRegex": "./test/e2e.spec.js",
2021-10-12 18:53:59 +00:00
"rootDir": "..",
2021-10-08 05:35:04 +00:00
"testTimeout": 30000,
};