Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/run-express-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ jobs:

- name: Run unit tests
working-directory: mflix/server/js-express
run: npm run test:unit -- --json --outputFile=test-results-unit.json || true
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤦‍♀️

run: npm run test:unit -- --json --outputFile=test-results-unit.json
env:
MONGODB_URI: mongodb://localhost:27017/sample_mflix?directConnection=true

- name: Run integration tests
working-directory: mflix/server/js-express
run: npm run test:integration -- --json --outputFile=test-results-integration.json || true
continue-on-error: true
run: npm run test:integration -- --json --outputFile=test-results-integration.json
env:
MONGODB_URI: mongodb://localhost:27017/sample_mflix?directConnection=true
ENABLE_SEARCH_TESTS: true
Expand Down