Files
web-terminal/vitest.config.ts
Yaojia Wang 3076843e9c feat(queue): server-side PTY-inject + idle-drained follow-up queue (W2)
The walk-away primitive: queue follow-up prompts and let a session advance itself
while you're gone — "run the tests" drains, and when Claude next goes idle "open a
PR" drains. Injection reuses writeInput (byte-identical to a keystroke, broadcasts
to all mirrored devices); the byte-shuttle is untouched.

- POST/GET/DELETE /live-sessions/:id/queue — POST/DELETE behind requireAllowedOrigin
  + a per-IP rate limit (QUEUE_RATE_MAX=20/min) + SESSION_ID_RE; text non-empty,
  byte-capped (QUEUE_ITEM_MAX_BYTES=4096, 16kb body), count-capped (QUEUE_MAX_ITEMS=10).
- Bounded per-session queue in manager (enqueueFollowup/drainOne/clearQueue);
  new optional queueLength on LiveSessionInfo.
- Idle drain: the Stop/SessionEnd /hook branch scheduleDrain()s a debounced timer
  (QUEUE_SETTLE_MS=1500). It drains exactly one entry only if the session still
  exists, hasn't exited, produced no output during settle, and is idle — three
  guards (debounced single timer + pop-one + settle re-check) → one entry per idle.
- New additive ServerMessage {type:'queue',length} broadcasts the count to mirrors
  (⧗N badge); FE enqueue via the quick-reply editor + TabApp.enqueueToActive.

Injected bytes go verbatim to the PTY (never built into a shell command). Verified
independently: typecheck + build:web clean, 1737 tests pass (real-PTY integration
covers idle-drain / one-per-idle / settle-guard). Foundation for templated launches,
auto-continue, and issue-intake (docs/ROADMAP.md).
2026-07-12 20:27:37 +02:00

60 lines
2.4 KiB
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: ['test/**/*.test.ts'],
environment: 'node',
// jsdom 29's localStorage methods are undefined under this config; a shared
// in-memory Web Storage polyfill fixes the frontend (@vitest-environment
// jsdom) tests that call localStorage.clear()/setItem(). No-op in node env.
setupFiles: ['test/setup/local-storage.ts'],
// Scaffold has no tests yet; don't fail the script until modules add theirs.
passWithNoTests: true,
// Coverage target is the global 80% rule; enforced with `--coverage`.
// Scope: all backend src/** (the review's core), plus the frontend modules
// that carry real logic and have unit tests. The remaining public/*.ts are
// thin DOM-wiring / entry-point glue (main.ts boots the app; dashboard/qr/
// share/shortcuts/search/keybar/settings/history just build + wire DOM) with
// no branch logic worth unit-testing in this fix-pass — excluded so the
// threshold measures tested surface, not untestable wiring. (Browser-driven
// E2E, not unit tests, is the right tool for those.)
coverage: {
provider: 'v8',
include: [
'src/**/*.ts',
'public/terminal-session.ts',
'public/link-paths.ts',
'public/queue.ts',
'public/tabs.ts',
'public/grid-layout.ts',
'public/grid-presets.ts',
'public/cell-monitor.ts',
'public/preview-grid.ts',
'public/title-util.ts',
'public/voice-commands.ts',
'public/voice-confirm.ts',
// Desktop (Electron) shell: only the PURE logic modules are measured.
// The Electron glue (main/window/tray/menu/notifications/preload/
// embedded-server/settings-store) is thin, side-effectful wiring around
// the electron/native/dist APIs — untestable as a unit and excluded on
// the same principle as the thin DOM-wiring public/*.ts above.
'desktop/src/port.ts',
'desktop/src/shell.ts',
'desktop/src/server-config.ts',
'desktop/src/deep-link.ts',
'desktop/src/notify-policy.ts',
'desktop/src/notifications.ts',
'desktop/src/live-poll.ts',
'desktop/src/prefs.ts',
'desktop/src/settings-store.ts',
],
thresholds: {
lines: 80,
functions: 80,
branches: 80,
statements: 80,
},
},
},
})