summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-07-05 13:58:59 -0700
committerGitHub <[email protected]>2025-07-05 20:58:59 +0000
commita7256f630c7c9335ccd7a41e97c9322c0a33ea67 (patch)
treef1bdac3ec3d67171717de60032cf3dbbf24f437b /package.json
parent4be32d1f73bc2d9e4d22a71eee7b142e9b0aa577 (diff)
Relase: Clean up and condensing (#3321)
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json
index 0b64f85b..64035439 100644
--- a/package.json
+++ b/package.json
@@ -24,12 +24,13 @@
"clean": "node scripts/clean.js",
"prepare": "npm run bundle",
"test": "npm run test --workspaces",
- "test:ci": "npm run test:ci --workspaces --if-present",
+ "test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
"test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output",
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
"test:integration:sandbox:none": "GEMINI_SANDBOX=false node integration-tests/run-tests.js",
"test:integration:sandbox:docker": "GEMINI_SANDBOX=docker node integration-tests/run-tests.js",
"test:integration:sandbox:podman": "GEMINI_SANDBOX=podman node integration-tests/run-tests.js",
+ "test:scripts": "vitest --config ./scripts/tests/vitest.config.ts",
"start": "node scripts/start.js",
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
@@ -85,7 +86,7 @@
"prettier": "^3.5.3",
"react-devtools-core": "^4.28.5",
"typescript-eslint": "^8.30.1",
+ "vitest": "^3.2.4",
"yargs": "^17.7.2"
- },
- "dependencies": {}
+ }
}