askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
10 lines (9 loc) • 313 B
TypeScript
import { StepStatus } from './step-status';
import { Snapshot } from './snapshot';
export interface StepRun {
readonly status: StepStatus;
readonly begin?: Snapshot | undefined;
readonly end?: Snapshot | undefined;
readonly duration?: number | undefined;
readonly error?: Error | undefined;
}