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 600 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TestRunStarts = void 0; const index_js_1 = require("../screenplay/index.js"); const DomainEvent_js_1 = require("./DomainEvent.js"); /** * Emitted when the very first test is about to start * * @group Events */ class TestRunStarts extends DomainEvent_js_1.DomainEvent { static fromJSON(v) { return new TestRunStarts(index_js_1.Timestamp.fromJSON(v)); } constructor(timestamp) { super(timestamp); } } exports.TestRunStarts = TestRunStarts; //# sourceMappingURL=TestRunStarts.js.map