Skip to content

Commit 79cd26e

Browse files
chore: bring back packages post merge
1 parent aff83c6 commit 79cd26e

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

package-lock.json

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,24 @@
3030
"reformat": "prettier --write .",
3131
"generate": "./scripts/generate.sh",
3232
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --testPathIgnorePatterns=/tests/accuracy/",
33+
"pre:test:accuracy": "npm run build:compile",
3334
"test:accuracy": "sh ./scripts/run-accuracy-tests.sh"
3435
},
3536
"license": "Apache-2.0",
3637
"devDependencies": {
38+
"@ai-sdk/anthropic": "^1.2.12",
39+
"@ai-sdk/azure": "^1.3.23",
40+
"@ai-sdk/openai": "^1.3.22",
3741
"@eslint/js": "^9.30.1",
42+
"@himanshusinghs/google": "^1.2.11",
3843
"@jest/globals": "^30.0.4",
3944
"@modelcontextprotocol/inspector": "^0.16.0",
4045
"@redocly/cli": "^1.34.4",
4146
"@types/jest": "^30.0.0",
4247
"@types/node": "^24.0.12",
4348
"@types/simple-oauth2": "^5.0.7",
4449
"@types/yargs-parser": "^21.0.3",
50+
"ai": "^4.3.16",
4551
"eslint": "^9.30.1",
4652
"eslint-config-prettier": "^10.1.5",
4753
"eslint-plugin-jest": "^29.0.1",
@@ -50,14 +56,18 @@
5056
"jest": "^30.0.4",
5157
"jest-environment-node": "^30.0.4",
5258
"jest-extended": "^6.0.0",
59+
"microdiff": "^1.5.0",
5360
"mongodb-runner": "^5.9.2",
61+
"ollama-ai-provider": "^1.2.0",
5462
"openapi-types": "^12.1.3",
5563
"openapi-typescript": "^7.8.0",
5664
"prettier": "^3.6.2",
65+
"simple-git": "^3.28.0",
5766
"ts-jest": "^29.4.0",
5867
"tsx": "^4.20.3",
5968
"typescript": "^5.8.3",
6069
"typescript-eslint": "^8.36.0",
70+
"uuid": "^11.1.0",
6171
"yaml": "^2.8.0"
6272
},
6373
"dependencies": {

scripts/run-accuracy-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export MDB_ACCURACY_RUN_ID=$(npx uuid v4)
1818
# npm run test:accuracy -- tests/accuracy/some-test.test.ts
1919
TEST_PATH_PATTERN="${1:-tests/accuracy}"
2020
shift || true
21-
node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --testPathPattern "$TEST_PATH_PATTERN" "$@"
21+
node --experimental-vm-modules node_modules/jest/bin/jest.js --bail --testPathPatterns "$TEST_PATH_PATTERN" "$@"
2222

2323
# Preserving the exit code from test run to correctly notify in the CI
2424
# environments when the tests fail.

0 commit comments

Comments
 (0)