mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
a830ac8df2
* 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
18 lines
544 B
TypeScript
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;
|