@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 • 513 B
TypeScript
import type { JSONObject } from 'tiny-types';
import { CorrelationId, Name } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
* @group Events
*/
export declare class TestRunnerDetected extends DomainEvent {
readonly sceneId: CorrelationId;
readonly name: Name;
static fromJSON(o: JSONObject): TestRunnerDetected;
constructor(sceneId: CorrelationId, name: Name, timestamp?: Timestamp);
}
//# sourceMappingURL=TestRunnerDetected.d.ts.map