@serenity-js/protractor
Version:
Adapter that integrates @serenity-js/web with Protractor, enabling Serenity/JS reporting and using the Screenplay Pattern to write end-to-end test scenarios
17 lines (14 loc) • 420 B
text/typescript
/**
* @group Integration
*/
export interface CucumberAdapterConfig {
/**
* Instruct Serenity/JS Cucumber Adapter to take over the `stdout` output
* of native Cucumber reporters to prevent them from clobbering the log.
*/
useStandardOutput: boolean;
/**
* Add `runnerId` to names of output files produced by native Cucumber.js formatters
*/
uniqueFormatterOutputs: boolean;
}