@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
17 lines • 517 B
JavaScript
import { Timestamp } from '../screenplay/index.js';
import { DomainEvent } from './DomainEvent.js';
/**
* Emitted when the last test in the test suite has finished running
* and it's time for any last-minute reporting activities to take place.
*
* @group Events
*/
export class TestRunFinishes extends DomainEvent {
static fromJSON(v) {
return new TestRunFinishes(Timestamp.fromJSON(v));
}
constructor(timestamp) {
super(timestamp);
}
}
//# sourceMappingURL=TestRunFinishes.js.map