only run 1 e2e test at a time

I think each test wipes the database at startup? but they share the
database, so running them in parallel feels like a bad idea in general
This commit is contained in:
dakkar 2025-06-10 16:17:17 +01:00
parent 363fb4db3a
commit ae9daca4f2

View file

@ -12,4 +12,5 @@ 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
};