aboutsummaryrefslogtreecommitdiff
path: root/e2e/jest.config.ts
blob: ed197f5823bf63fa4d1e1bd4316318d9d0ee2d36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import type { Config } from "@jest/types";

const config: Config.InitialOptions = {
  verbose: true,
  testMatch: ["**/e2e/**/*.test.+(ts|tsx|js|jsx)"],
  transform: {
    "^.+\\.(ts|tsx)$": "ts-jest",
  },
  setupFiles: ["./main.ts"],
  testTimeout: 20000,
  maxConcurrency: 1,
};
export default config;