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

15 lines 299 B
/** * Information about the ordering (random or not) of this execution of the suite. * * @package */ export interface Order { random: boolean; seed: string; sort: (items: Array<{ id: number; }>) => Array<{ id: number; }>; } //# sourceMappingURL=Order.d.ts.map