From 170497f2458dee970e129058fb8a8f4c9b587182 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 24 Jan 2026 06:43:04 -0600 Subject: [PATCH] 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 --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index f352578e..41a00115 100644 --- a/.dockerignore +++ b/.dockerignore @@ -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