UNPKG

@serenity-js/jasmine

Version:

Serenity/JS test runner adapter for Jasmine, enabling the use of the Screenplay Pattern in Jasmine-based test suites and leveraging Serenity/JS reporting capabilities

13 lines 236 B
/** * @package */ export class CustomFunctionSpecFilter { fn; constructor(fn) { this.fn = fn; } matches(specName) { return this.fn(specName); } } //# sourceMappingURL=CustomFunctionSpecFilter.js.map