1
0

Merge pull request #1045 from bigcapitalhq/self-contained-e2e-github-action

feat(ci): self contained e2e GitHub action
This commit is contained in:
Ahmed Bouhuolia
2026-03-15 23:49:49 +02:00
committed by GitHub
parent ec17514d49
commit 5caa4bce61
4 changed files with 118 additions and 30 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --watchAll",
"test:e2e": "jest --config ./test/jest-e2e.json --forceExit",
"cli": "ts-node -r tsconfig-paths/register src/cli.ts",
"cli:system:migrate:latest": "ts-node -r tsconfig-paths/register src/cli.ts system:migrate:latest",
"cli:system:migrate:rollback": "ts-node -r tsconfig-paths/register src/cli.ts system:migrate:rollback",
+1 -1
View File
@@ -2,7 +2,7 @@
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": ".",
"testEnvironment": "node",
"testRegex": ".e2e-spec.ts$",
"testRegex": "auth.e2e-spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},