Skip to content

Commit

Permalink
fix test paths
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuspoehls committed Nov 16, 2021
1 parent c5195f3 commit 0b9bbb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: npm install

- name: Run tests
run: npm test ./test/single-instance.js
run: npm test ./test/single-instance
env:
CI: true
MONGODB_DB: ${{ matrix.mongodb-db }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-replica-set.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: npm install

- name: Run tests
run: npm test ./test/replica-set.js
run: npm test ./test/replica-set
env:
CI: true
MONGODB_REPLICA_SET: mongodb-test-rs
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
run: npm install

- name: Run tests
run: npm test ./test/replica-set.js
run: npm test ./test/replica-set
env:
CI: true
MONGODB_PORT: ${{ matrix.mongodb-port }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-single-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: npm install

- name: Run tests
run: npm test ./test/single-instance.js
run: npm test ./test/single-instance
env:
CI: true
MONGODB_DB: ${{ matrix.mongodb-db }}
Expand Down Expand Up @@ -64,6 +64,6 @@ jobs:
run: npm install

- name: Run tests
run: npm test ./test/custom-port.js
run: npm test ./test/custom-port
env:
CI: true

0 comments on commit 0b9bbb0

Please sign in to comment.