{
  "preset": "ts-jest",
  "testEnvironment": "node",
  "roots": ["<rootDir>/tests/integration"],
  "testMatch": [
    "**/integration/**/*.test.ts",
    "**/integration/**/*.spec.ts"
  ],
  "transform": {
    "^.+\\.ts$": "ts-jest"
  },
  "setupFilesAfterEnv": ["<rootDir>/tests/integration/setup.ts"],
  "testTimeout": 60000
}

