@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
12 lines • 359 B
TypeScript
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
* Emitted when the very first test is about to start
*
* @group Events
*/
export declare class TestRunStarts extends DomainEvent {
static fromJSON(v: string): TestRunStarts;
constructor(timestamp?: Timestamp);
}
//# sourceMappingURL=TestRunStarts.d.ts.map