Files
callstack__agent-device/test/integration/linux-e2e/command-evidence.ts
Michał Pierzchała a830ac8df2 feat: add Linux command evidence lane (#2017)
* feat: add Linux command evidence lane

* fix: assert Linux find result shape

* fix: read Linux find result envelope

* fix: reset Linux calculator before diff

* fix: release Linux session before reset

* fix: guard Linux evidence session reset

* fix: forward Linux evidence timeout

* fix: tighten Linux evidence assertions

* fix: preserve Linux replay session identity

* fix: close Linux replay session before reset

* fix: share Linux evidence daemon state

* fix: keep Linux swipe evidence in bounds

* fix: keep Linux artifact gap honest
2026-08-25 07:56:13 +02:00

18 lines
544 B
TypeScript

import { PUBLIC_COMMANDS } from '../../../src/command-catalog.ts';
/** Commands exercised by the separate Linux/Xvfb command-evidence lane. */
export const LINUX_COMMAND_EVIDENCE_COMMANDS = [
PUBLIC_COMMANDS.capabilities,
PUBLIC_COMMANDS.doctor,
PUBLIC_COMMANDS.events,
PUBLIC_COMMANDS.replay,
PUBLIC_COMMANDS.test,
PUBLIC_COMMANDS.batch,
PUBLIC_COMMANDS.diff,
PUBLIC_COMMANDS.find,
PUBLIC_COMMANDS.swipe,
] as const;
export const LINUX_COMMAND_EVIDENCE_SCRIPT =
'test/integration/linux-e2e/command-evidence.ad' as const;