UNPKG

create-testplane

Version:

A tool for fast and simple Testplane configuration

30 lines 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const plugins_1 = require("../plugins"); const reportsGroup = { description: "Generate reports about tests' results, plugins, their performance", plugins: [ { description: "Generate html-reports for showing passed/failed tests, screenshot diffs, error messages, stacktraces, meta-info and so on", plugin: plugins_1.HTML_REPORTER, default: true, }, { description: "Generate report about executed commands and their performance", plugin: plugins_1.TESTPLANE_PROFILER, default: false, }, { description: "Profile plugins performance", plugin: plugins_1.TESTPLANE_PLUGINS_PROFILER, default: false, }, { description: "Add ability to autogenerate screenshot testplane tests on storybook components in runtime", plugin: plugins_1.TESTPLANE_STORYBOOK, default: false, }, ], }; exports.default = reportsGroup; //# sourceMappingURL=reportsGroup.js.map