create-testplane
Version:
A tool for fast and simple Testplane configuration
40 lines • 1.59 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const plugins_1 = require("../plugins");
const miscGroup = {
description: "Misc (storybook addon, OAuth, url query params, test filter, tabs closer, global hooks)",
plugins: [
{
description: "Set authorization header with OAuth token",
plugin: plugins_1.TESTPLANE_OAUTH,
default: false,
configNote: "Specify the OAuth token",
},
{
description: "Add/replace url query params",
plugin: plugins_1.TESTPLANE_URL_DECORATOR,
default: false,
configNote: "Specify the query params",
},
{
description: "Only run specified tests in provided browsers",
plugin: plugins_1.TESTPLANE_TEST_FILTER,
default: false,
configNote: `Create testplane-filter.json on the example from "${plugins_1.TESTPLANE_TEST_FILTER}" section in Testplane config`,
},
{
description: "Add global 'beforeEach' and 'afterEach' functions",
plugin: plugins_1.TESTPLANE_GLOBAL_HOOK,
default: false,
configNote: "Specify beforeEach and afterEach hooks",
},
{
description: "Close opened tabs from previous tests so the browser coudn't degrade",
plugin: plugins_1.TESTPLANE_TABS_CLOSER,
default: false,
configNote: "Specify the browsers with regex",
},
],
};
exports.default = miscGroup;
//# sourceMappingURL=miscGroup.js.map