Skip to content

Commit 17a0282

Browse files
jonphippsclaude
andcommitted
fix: include deployment tests in vitest CI configuration
- Add packages/theme/src/tests/deployment/**/* to vitest.config.ci.ts include patterns - Resolves Group 5 CI test failures where external-services.test.ts was excluded - CI connectivity and config validation commands now work correctly - Supports proper Group 5 testing strategy (environment/infrastructure focus) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3249d45 commit 17a0282

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vitest.config.ci.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default defineConfig({
1818
// Configuration tests - critical for proper site behavior
1919
'packages/theme/src/tests/config/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
2020

21-
// Exclude all script tests (development tools)
22-
// These are already validated locally and don't affect deployment
21+
// Deployment tests - external service connectivity for CI environments
22+
'packages/theme/src/tests/deployment/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
2323
],
2424
exclude: [
2525
...(baseConfig.test?.exclude || []),

0 commit comments

Comments
 (0)