/* * 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: "/built-test/entry.js", setupFilesAfterEnv: ["/test/jest.setup.ts"], testMatch: [ "/test/e2e/**/*.ts", ], maxConcurrency: 1, // these tests share a database, running more than one at a time is a bad idea };