Installs @vitest/coverage-v8 and configures coverage measurement over src/lib/utils/** and src/lib/server/** — the utility and server-side logic that is meaningful to measure in the Node test project. Svelte component files and generated code (api/**, paraglide/**) are excluded; those run in the browser project. Baseline: 87.87% branch coverage — already above the 80% threshold. Adds test:coverage script for local runs; produces lcov report for CI. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
441 B
Plaintext
33 lines
441 B
Plaintext
node_modules
|
|
|
|
# Output
|
|
.output
|
|
.vercel
|
|
.netlify
|
|
.wrangler
|
|
/.svelte-kit
|
|
/build
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Env
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.test
|
|
|
|
# Vite
|
|
vite.config.js.timestamp-*
|
|
vite.config.ts.timestamp-*
|
|
|
|
# Paraglide
|
|
src/lib/paraglide
|
|
|
|
# Generated OpenAPI types — regenerate with: npm run generate:api
|
|
# (committed as a stub; overwritten by the real spec after generation)
|
|
# src/lib/generated/api.ts
|
|
src/lib/paraglide_bak*
|
|
/coverage
|