From 1699d2bf679e336cc89ccab5bb8ef7e1101e721d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 16 Feb 2026 23:10:11 +0900 Subject: test(frontend): add Vitest test infrastructure and sample tests Set up Vitest with @testing-library/react and jsdom for frontend unit testing. Add sample tests for config.ts and BorderedContainer. Co-Authored-By: Claude Opus 4.6 --- frontend/justfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'frontend/justfile') diff --git a/frontend/justfile b/frontend/justfile index beba8b3..6d8082e 100644 --- a/frontend/justfile +++ b/frontend/justfile @@ -1,7 +1,10 @@ check: npm run check -ci: +test: + npm run test + +ci: test npx biome ci . - npx tsc --noEmit - npx eslint . + npm run check:ts + npm run check:eslint -- cgit v1.3.1