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

13 lines (11 loc) 395 B
import type { OutputDescriptor } from './OutputDescriptor.js'; import type { SerenityFormatterOutput } from './SerenityFormatterOutput.js'; import { StandardOutputDescriptor } from './StandardOutputDescriptor.js'; /** * @group Integration */ export class StandardOutput implements SerenityFormatterOutput { get(): OutputDescriptor { return new StandardOutputDescriptor(); } }