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

11 lines (10 loc) 238 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 }>; }