@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
12 lines (10 loc) • 336 B
text/typescript
import { RuntimeError } from '@serenity-js/core/lib/errors';
/**
* Thrown when more than one Cucumber step definition matches
* a Cucumber step.
*/
export class AmbiguousStepDefinitionError extends RuntimeError {
constructor(message: string, cause?: Error) {
super(AmbiguousStepDefinitionError, message, cause);
}
}