UNPKG

create-testplane

Version:

A tool for fast and simple Testplane configuration

38 lines 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultTestplaneTestsDir = void 0; exports.defaultTestplaneTestsDir = "testplane-tests"; const defaultTestplaneConfig = { gridUrl: "local", baseUrl: "http://localhost", pageLoadTimeout: 20000, httpTimeout: 20000, testTimeout: 90000, resetCursor: false, sets: { desktop: { files: [`${exports.defaultTestplaneTestsDir}/**/*.testplane.(t|j)s`], browsers: ["chrome", "firefox"], }, }, windowSize: { width: 1920, height: 1080, }, browsers: { chrome: { headless: true, desiredCapabilities: { browserName: "chrome", }, }, firefox: { headless: true, desiredCapabilities: { browserName: "firefox", }, }, }, }; exports.default = defaultTestplaneConfig; //# sourceMappingURL=defaultTestplaneConfig.js.map