@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
18 lines (14 loc) • 443 B
text/typescript
import type { Order } from './Order.js';
/**
* Information passed to the Reporter#jasmineStarted event.
*
* @see https://jasmine.github.io/api/edge/global.html#JasmineStartedInfo
*
* @package
*/
export interface JasmineStartedInfo {
/** The total number of specs defined in this suite. */
totalSpecsDefined: number;
/** Information about the ordering (random or not) of this execution of the suite. */
order: Order;
}