Merge pull request #291 from onozaty/fix-jest-e2e-regex

Fix a regular expression incorrectly in testRegex in jest-e2e.json
This commit is contained in:
Kamil Mysliwiec
2023-12-30 13:11:36 +01:00
committed by GitHub
+1 -1
View File
@@ -2,7 +2,7 @@
"moduleFileExtensions": ["js", "json", "ts"], "moduleFileExtensions": ["js", "json", "ts"],
"rootDir": ".", "rootDir": ".",
"testEnvironment": "node", "testEnvironment": "node",
"testRegex": ".e2e-spec.ts$", "testRegex": "\\.e2e-spec\\.ts$",
"transform": { "transform": {
"^.+\\.(t|j)s$": "ts-jest" "^.+\\.(t|j)s$": "ts-jest"
} }