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:
commit
3491e8f255
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue