mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-11 08:04:17 -08:00
16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
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"
|
|
}
|
|
};
|
|
|