UNPKG

@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

15 lines (12 loc) 280 B
import type { OutputDescriptor } from './OutputDescriptor'; /** * @group Integration */ export class StandardOutputDescriptor implements OutputDescriptor { value(): string { return ''; } cleanUp(): Promise<void> { return Promise.resolve(); } }