@serenity-js/cucumber
Version:
Serenity/JS test runner adapter for seamless integration with any version of Cucumber.js, facilitating BDD-style test automation and leveraging Serenity/JS reporting capabilities
13 lines (11 loc) • 386 B
text/typescript
import type { OutputDescriptor } from './OutputDescriptor';
import type { SerenityFormatterOutput } from './SerenityFormatterOutput';
import { StandardOutputDescriptor } from './StandardOutputDescriptor';
/**
* @group Integration
*/
export class StandardOutput implements SerenityFormatterOutput {
get(): OutputDescriptor {
return new StandardOutputDescriptor();
}
}