UNPKG

create-testplane

Version:

A tool for fast and simple Testplane configuration

31 lines 1.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const plugins_1 = require("../plugins"); const unstableGroup = { description: "Increase stability of unstable tests", plugins: [ { description: "Retry assertView on comparison fail", plugin: plugins_1.TESTPLANE_RETRY_COMMAND, default: false, }, { description: "Add extra retry if test fails due to infrastructure reasons", plugin: plugins_1.TESTPLANE_RETRY_PROGRESSIVE, default: false, configNote: "Specify regex to match error", }, { description: "Repeat tests the specified number of times regardless of the result", plugin: plugins_1.TESTPLANE_TEST_REPEATER, default: false, }, { description: "Limit retries and duration threshold", plugin: plugins_1.TESTPLANE_RETRY_LIMITER, default: false, }, ], }; exports.default = unstableGroup; //# sourceMappingURL=stabilityGroup.js.map