Fix incorrect regular expression in testRegex
The following file was also a regular expression that would match. * appe2e-spec.ts * appe2e-specxts
This commit is contained in:
parent
0bd715469f
commit
17a8aa386e
|
|
@ -2,7 +2,7 @@
|
|||
"moduleFileExtensions": ["js", "json", "ts"],
|
||||
"rootDir": ".",
|
||||
"testEnvironment": "node",
|
||||
"testRegex": ".e2e-spec.ts$",
|
||||
"testRegex": "\\.e2e-spec\\.ts$",
|
||||
"transform": {
|
||||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue