mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
15 lines
377 B
JavaScript
15 lines
377 B
JavaScript
|
|
module.exports = {
|
||
|
|
"roots": [
|
||
|
|
"<rootDir>/test"
|
||
|
|
],
|
||
|
|
"testMatch": [
|
||
|
|
"**/__tests__/**/*.+(ts|tsx|js)",
|
||
|
|
"**/?(*.)+(spec|test).+(ts|tsx|js)"
|
||
|
|
],
|
||
|
|
"transform": {
|
||
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
||
|
|
},
|
||
|
|
// "globalSetup": "<rootDir>/test/setupJest.ts",
|
||
|
|
preset: 'jest-puppeteer',
|
||
|
|
// setupFilesAfterEnv: "<rootDir>/test/setupJest.ts",
|
||
|
|
}
|