@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
15 lines • 508 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { Outcome } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
* Emitted when all the test scenarios have finished running.
*
* @group Events
*/
export declare class TestRunFinished extends DomainEvent {
readonly outcome: Outcome;
static fromJSON(o: JSONObject): TestRunFinished;
constructor(outcome: Outcome, timestamp?: Timestamp);
}
//# sourceMappingURL=TestRunFinished.d.ts.map