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 569 B
import type { JSONObject } from 'tiny-types'; import { TinyType } from 'tiny-types'; import { FileSystemLocation } from '../io'; import { CorrelationId } from './CorrelationId'; import { Name } from './Name'; export declare class TestSuiteDetails extends TinyType { readonly name: Name; readonly location: FileSystemLocation; readonly correlationId: CorrelationId; static fromJSON(o: JSONObject): TestSuiteDetails; constructor(name: Name, location: FileSystemLocation, correlationId?: CorrelationId); } //# sourceMappingURL=TestSuiteDetails.d.ts.map