bug(tests): fix test errors (#5678)

Co-authored-by: matt korwel <matt.korwel@gmail.com>
This commit is contained in:
Lee James 2025-08-06 15:26:46 -04:00 committed by GitHub
parent 1f0ad86544
commit 1fb680bacc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ export default tseslint.config(
'packages/vscode-ide-companion/dist/**', 'packages/vscode-ide-companion/dist/**',
'bundle/**', 'bundle/**',
'package/bundle/**', 'package/bundle/**',
'.integration-tests/**',
], ],
}, },
eslint.configs.recommended, eslint.configs.recommended,

View File

@ -29,7 +29,7 @@
"build:packages": "npm run build --workspaces", "build:packages": "npm run build --workspaces",
"build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build", "build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js", "bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
"test": "npm run test --workspaces", "test": "npm run test --workspaces --if-present",
"test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts", "test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts", "test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
"test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output", "test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output",