- Add test:e2e:coverage script with Bun's built-in coverage support - Create bunfig.toml with coverage configuration (text + lcov reporters) - Fix webauthn tests to create real database sessions/login requests instead of mock context objects that bypass auth middleware - Add createUserAPIContext helper for cleaner test code - Update security tests to expect NOT_FOUND when accessing other user's passkeys Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
405 B
Plaintext
52 lines
405 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
|
|
# Svelte
|
|
.svelte-kit/
|
|
|
|
# Turborepo
|
|
.turbo/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.envrc
|
|
|
|
# Devenv
|
|
.devenv*
|
|
devenv.local.nix
|
|
|
|
# direnv
|
|
.direnv
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.cursor/
|
|
|
|
# OS
|
|
.DS_Store
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
*.pem
|
|
.vercel
|
|
|
|
.playwright-mcp/
|
|
|
|
.eslintcache
|