UNPKG

yachr

Version:

Yet another cucumber html reporter

9 lines (8 loc) 277 B
import { ICucumberFeature } from './cucumberFeature'; /** * The Cucumber test reporter will produce `ICucumberResult`. * for each Feature tested. As so this class acts to emulate this behaviour */ export interface ICucumberFeatureSuite { features: ICucumberFeature[]; }