From 00922894eec0247ad9f359a6372fb3bc8e0822f3 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Tue, 5 May 2026 12:32:46 +0200 Subject: [PATCH] chore: remove empty root tests/ folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vertical-feature architecture places tests in three locations (per spec §13B): - Unit + component tests: colocated `src/**/*.test.{ts,tsx}` - Feature-level integration: `packages//tests/*.feature.test.ts` - Browser e2e: `apps//e2e/*.spec.ts` The root `tests/{unit,integration,e2e}/` scaffolding was a leftover from the horizontal Clean Architecture template. Spec §13B.5 explicitly recommends against a global root tests folder unless used for true cross-application harnesses (which we don't have). Co-Authored-By: Claude Opus 4.7 (1M context) --- tests/e2e/.gitkeep | 0 tests/integration/.gitkeep | 0 tests/unit/.gitkeep | 0 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tests/e2e/.gitkeep delete mode 100644 tests/integration/.gitkeep delete mode 100644 tests/unit/.gitkeep diff --git a/tests/e2e/.gitkeep b/tests/e2e/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/integration/.gitkeep b/tests/integration/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/tests/unit/.gitkeep b/tests/unit/.gitkeep deleted file mode 100644 index e69de29..0000000