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

11 lines 371 B
import { RuntimeError } from '@serenity-js/core/errors'; /** * Thrown when more than one Cucumber step definition matches * a Cucumber step. */ export class AmbiguousStepDefinitionError extends RuntimeError { constructor(message, cause) { super(AmbiguousStepDefinitionError, message, cause); } } //# sourceMappingURL=AmbiguousStepDefinitionError.js.map