Skip to content

Commit b6a85af

Browse files
committed
pass correct filters to pnpm test
1 parent 51ec3e4 commit b6a85af

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/code-health-long-running.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
MDB_MCP_API_CLIENT_ID: ${{ secrets.TEST_ATLAS_CLIENT_ID }}
3030
MDB_MCP_API_CLIENT_SECRET: ${{ secrets.TEST_ATLAS_CLIENT_SECRET }}
3131
MDB_MCP_API_BASE_URL: ${{ vars.TEST_ATLAS_BASE_URL }}
32-
run: pnpm test -- tests/integration/tools/atlas --project=long-running-tests
32+
run: pnpm test tests/integration/tools/atlas --project=long-running-tests
3333
- name: Upload test results
3434
uses: actions/upload-artifact@v5
3535
if: always()

.github/workflows/code-health.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
MDB_MCP_API_CLIENT_ID: ${{ secrets.TEST_ATLAS_CLIENT_ID }}
7070
MDB_MCP_API_CLIENT_SECRET: ${{ secrets.TEST_ATLAS_CLIENT_SECRET }}
7171
MDB_MCP_API_BASE_URL: ${{ vars.TEST_ATLAS_BASE_URL }}
72-
run: pnpm test -- tests/integration/tools/atlas/
72+
run: pnpm test tests/integration/tools/atlas/
7373
- name: Upload test results
7474
uses: actions/upload-artifact@v5
7575
if: always()
@@ -94,7 +94,7 @@ jobs:
9494
- name: Install dependencies
9595
run: pnpm install --frozen-lockfile
9696
- name: Run tests
97-
run: pnpm test -- tests/integration/tools/atlas-local/
97+
run: pnpm test tests/integration/tools/atlas-local/
9898
- name: Upload test results
9999
uses: actions/upload-artifact@v5
100100
if: always()

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ You can run tests using the following pnpm scripts:
7272
To run a specific test file or directory:
7373

7474
```bash
75-
pnpm test -- path/to/test/file.test.ts
76-
pnpm test -- path/to/directory
75+
pnpm test path/to/test/file.test.ts
76+
pnpm test path/to/directory
7777
```
7878

7979
#### Accuracy Tests and colima

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ A Model Context Protocol server for interacting with MongoDB Databases and Mongo
3535
- At least 20.19.0
3636
- When using v22 then at least v22.12.0
3737
- Otherwise any version 23+
38-
- pnpm (for development)
3938

4039
```shell
4140
node -v

0 commit comments

Comments
 (0)