UNPKG

@serenity-js/core

Version:

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

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