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

17 lines 410 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CustomFunctionSpecFilter = void 0; /** * @package */ class CustomFunctionSpecFilter { fn; constructor(fn) { this.fn = fn; } matches(specName) { return this.fn(specName); } } exports.CustomFunctionSpecFilter = CustomFunctionSpecFilter; //# sourceMappingURL=CustomFunctionSpecFilter.js.map