UNPKG

yachr

Version:

Yet another cucumber html reporter

10 lines (9 loc) 174 B
/** * Defines the result of a single Step * (e.g. GIVEN, WHEN, THEN) */ export interface IResult { status: string; duration: number; error_message?: string; }