Sharkey/packages/backend/jest.config.e2e.cjs
dakkar d374f2c95d tweak jest e2e config
`maxConcurrency` is how many `test.concurrent` to run at once, nothing
to do with how many test *files* to run (that's probably `maxWorkers`
which is already 1)
2025-06-10 17:10:45 +01:00

15 lines
371 B
JavaScript

/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/en/configuration.html
*/
const base = require('./jest.config.cjs')
module.exports = {
...base,
globalSetup: "<rootDir>/built-test/entry.js",
setupFilesAfterEnv: ["<rootDir>/test/jest.setup.ts"],
testMatch: [
"<rootDir>/test/e2e/**/*.ts",
],
};