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
commit 3491e8f255
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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"
} }