fix(smoke-tests): add exception in .dockerignore for smoke test files

The .dockerignore was excluding **/*.spec.ts which blocked the smoke
test files from being copied into the Docker image.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2026-01-24 06:43:04 -06:00
parent 9c09851b44
commit 170497f245
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@ coverage
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
# EXCEPTION: Include smoke tests for the smoke tests image
!apps/web/e2e/smoke/*.spec.ts
# IDE
.vscode