UNPKG

yachr

Version:

Yet another cucumber html reporter

21 lines (20 loc) 648 B
import { FeatureSuiteSummary } from './featureSuiteSummary'; import { ScenarioSuiteSummary } from './scenarioSuiteSummary'; /** * An aggregation summary of all Features, and all Scenarios * in the test suite. */ export declare class SuiteSummary { /** * The aggregated summary of all features. * Identifies the total number of features passing, * failing, etc. */ featureSummary: FeatureSuiteSummary; /** * The aggregated summary of all scenarios (spanning * multiple features). Identifies the total number of * scenarios passing, failing, etc. */ scenarioSummary: ScenarioSuiteSummary; }