Files
PiCloud/.gitignore
MechaCat02 3e72ddde78 test(dashboard): stabilize the e2e suite under parallel runs
Three issues found while running the full B1–B8 suite together:

- The B1 logout test was driving the shared admin storageState
  token, invalidating it for every subsequent test. Switched it to
  a fresh login so its session is disposable.
- Bumped navigationTimeout to 30s and capped local workers at 4 to
  cope with the Vite dev server's first-compile cost under
  parallel load. Local also gets one retry to absorb intermittent
  warmup flakiness.
- Cleared a few lint warnings (unused appId / _adminPage vars) and
  belt-and-braces gitignore for playwright artifacts written to
  the repo root when the CLI is invoked from there by accident.

Suite now: 55/55 passing in ~21s.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 07:44:07 +02:00

54 lines
817 B
Plaintext

# Rust
/target
**/*.rs.bk
Cargo.lock.bak
# IDE
/.idea
/.vscode
*.swp
*.swo
.DS_Store
# Claude Code — team-wide settings go in .claude/settings.json (tracked);
# personal grants from in-session prompts live in settings.local.json.
.claude/settings.local.json
# Env / secrets
.env
.env.*
!.env.example
# Local config overrides
config.local.toml
/data
/postgres-data
# Dashboard
/dashboard/node_modules
/dashboard/.svelte-kit
/dashboard/build
/dashboard/.env
# Dashboard — Playwright E2E
/dashboard/tests/e2e/.auth
/dashboard/tests/e2e/.results
/dashboard/playwright-report
/dashboard/test-results
/dashboard/.playwright
# When playwright is invoked from the repo root by accident, these
# also land here.
/playwright-report
/test-results
# Caddy
/caddy/data
/caddy/config
# Logs
*.log
/logs
# OS
Thumbs.db