UNPKG

@serenity-js/core

Version:

The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure

14 lines 534 B
import type { JSONObject } from 'tiny-types'; import { Outcome, TestSuiteDetails } from '../model'; import { Timestamp } from '../screenplay'; import { DomainEvent } from './DomainEvent'; /** * @group Events */ export declare class TestSuiteFinished extends DomainEvent { readonly details: TestSuiteDetails; readonly outcome: Outcome; static fromJSON(o: JSONObject): TestSuiteFinished; constructor(details: TestSuiteDetails, outcome: Outcome, timestamp?: Timestamp); } //# sourceMappingURL=TestSuiteFinished.d.ts.map