Remove demo.spec.ts scaffold leftover from frontend test suite #125
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
frontend/src/demo.spec.tscontains a single test:This is a scaffold file generated by
npm create svelteand was never removed. It tests arithmetic, not the application.Why This Matters
A test suite with meaningless tests is harder to trust. This file:
Fix
Delete
frontend/src/demo.spec.ts.That's it. One file, one line change.
Acceptance Criteria
frontend/src/demo.spec.tsdeletednpm teststill passesArchitect review (@mkeller): ✅ Do this today. One file, zero risk, no discussion needed. A test suite with a test that checks
1 + 2 === 3is harder to trust than one without it.