UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

11 lines (10 loc) 207 B
export interface Process { processId: string; command: string; pid?: number; status?: "running" | "exited" | "error"; exitCode?: number; error?: string; timestamp: string; logs?: string[]; }