Skip to content

Commit

Permalink
Merge pull request #1075 from Tony133/test/fix-test-e2e-config
Browse files Browse the repository at this point in the history
test(): fix jest config for jest 29
  • Loading branch information
kamilmysliwiec committed Sep 29, 2022
2 parents 2eecc41 + 6d2b4ac commit ebd024c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/jest-e2e.json
@@ -1,14 +1,9 @@
{
"globals": {
"ts-jest": {
"tsconfig": "./tests/tsconfig.json"
}
},
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": ".",
"testEnvironment": "node",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
"^.+\\.(t|j)s$": ["ts-jest", { "tsconfig": "./tests/tsconfig.json" }]
}
}

0 comments on commit ebd024c

Please sign in to comment.