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:
parent
9c09851b44
commit
170497f245
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue