html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
17 lines • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlaywrightTestCollectionAdapter = void 0;
const playwright_1 = require("../test/playwright");
class PlaywrightTestCollectionAdapter {
static create(tests) {
return new this(tests);
}
constructor(tests) {
this._testAdapters = tests.map(test => playwright_1.PlaywrightTestAdapter.create(test));
}
get tests() {
return this._testAdapters;
}
}
exports.PlaywrightTestCollectionAdapter = PlaywrightTestCollectionAdapter;
//# sourceMappingURL=playwright.js.map