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 275 B
/** * @package */ export class InvertedGrepSpecFilter { pattern; constructor(pattern) { this.pattern = new RegExp(pattern); } matches(specName) { return !this.pattern.test(specName); } } //# sourceMappingURL=InvertedGrepSpecFilter.js.map