Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthernMan54 committed May 10, 2023
1 parent 93a72f4 commit 38c480c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- run: npm ci
- run: npm run build:server
- run: npm run lint:server
- run: npm run test:e2e
- run: npm run test

# remove dev deps
- run: npm clean-install --production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: npm ci
- run: npm run build:server
- run: npm run lint:server
- run: npm run test:e2e
- run: npm run test

# remove dev deps
- run: npm clean-install --production
Expand Down
21 changes: 4 additions & 17 deletions test/jest-e2e.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
{
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": "../",
"testEnvironment": "node",
"testRegex": ".e2e-spec.ts$",
"testTimeout": 10000,
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts"
],
"setupFiles": [
"./test/setup.ts"
],
"coveragePathIgnorePatterns": [
"/ui/",
"/test/",
"/dist/",
"/scripts/"
]
"collectCoverageFrom": ["**/*.ts"],
"setupFiles": ["./test/setup.ts"],
"coveragePathIgnorePatterns": ["/ui/", "/test/", "/dist/", "/scripts/"]
}

0 comments on commit 38c480c

Please sign in to comment.