UNPKG

@push-based/node-cli-testing

Version:

### A e2e-testing library for node CLI and processes including sandbox generation on the fly

11 lines (10 loc) 222 B
import { Options } from 'execa'; export type ProcessOptions = Options; export type PromptTestOptions = { timeout?: number; }; export type TestResult = { stdout: string; stderr: string; exitCode: number; };