From 17a8aa386e1344b9e58bdd811b3e00ae7f199b7e Mon Sep 17 00:00:00 2001 From: onozaty Date: Thu, 28 Dec 2023 16:48:51 +0900 Subject: [PATCH] Fix incorrect regular expression in testRegex The following file was also a regular expression that would match. * appe2e-spec.ts * appe2e-specxts --- test/jest-e2e.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jest-e2e.json b/test/jest-e2e.json index e9d912f..72f1377 100644 --- a/test/jest-e2e.json +++ b/test/jest-e2e.json @@ -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" }