Files
doneit-web/jest.config.js
T

15 lines
371 B
JavaScript
Raw Normal View History

2021-07-10 08:45:51 +01:00
module.exports = {
"roots": [
"<rootDir>/test"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
2023-06-05 15:44:51 +01:00
"globalSetup": "<rootDir>/test/setupJest.ts",
2021-07-10 08:45:51 +01:00
preset: 'jest-puppeteer',
2023-06-05 15:44:51 +01:00
setupFilesAfterEnv: "<rootDir>/test/setupJest.ts",
2021-07-10 08:45:51 +01:00
}