UNPKG

@serenity-js/core

Version:

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

20 lines 586 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TestRunStarts = void 0; const screenplay_1 = require("../screenplay"); const DomainEvent_1 = require("./DomainEvent"); /** * Emitted when the very first test is about to start * * @group Events */ class TestRunStarts extends DomainEvent_1.DomainEvent { static fromJSON(v) { return new TestRunStarts(screenplay_1.Timestamp.fromJSON(v)); } constructor(timestamp) { super(timestamp); } } exports.TestRunStarts = TestRunStarts; //# sourceMappingURL=TestRunStarts.js.map