We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfdff26 commit 0ff723aCopy full SHA for 0ff723a
1 file changed
.github/workflows/run-express-tests.yml
@@ -62,13 +62,14 @@ jobs:
62
63
- name: Run unit tests
64
working-directory: mflix/server/js-express
65
- run: npm run test:unit -- --json --outputFile=test-results-unit.json || true
+ run: npm run test:unit -- --json --outputFile=test-results-unit.json
66
env:
67
MONGODB_URI: mongodb://localhost:27017/sample_mflix?directConnection=true
68
69
- name: Run integration tests
70
71
- run: npm run test:integration -- --json --outputFile=test-results-integration.json || true
+ continue-on-error: true
72
+ run: npm run test:integration -- --json --outputFile=test-results-integration.json
73
74
75
ENABLE_SEARCH_TESTS: true
0 commit comments