UNPKG

cucumber-to-junit

Version:

Converts [Cucumber.js](https://github.com/cucumber/cucumber-js) json results files to JUnit XML.

10 lines (9 loc) 214 B
/** * Configuration options for the converter. * * @property markUndefinedAsFailed - Mark scenarios with undefined steps as failed in JUnit. * */ export interface Config { markUndefinedAsFailed?: boolean; }