Files
doneit-web/jest.config.js
Peter Maquiran 588745c055 fix
2023-06-05 15:44:51 +01:00

15 lines
371 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",
}