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)
This commit is contained in:
dakkar 2025-06-10 17:09:24 +01:00
parent f6f3852b38
commit d374f2c95d

View file

@ -12,5 +12,4 @@ module.exports = {
testMatch: [
"<rootDir>/test/e2e/**/*.ts",
],
maxConcurrency: 1, // these tests share a database, running more than one at a time is a bad idea
};