@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
26 lines • 784 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Settings = void 0;
class Settings {
static get browserName() {
return process.env["BROWSER_NAME"] || "chrome";
}
static get browserWidth() {
return +process.env["BROWSER_WIDTH"] || 1366;
}
static get browserHeight() {
return +process.env["BROWSER_HEIGHT"] || 768;
}
static get headless() {
const value = process.env["HEADLESS"];
return value !== undefined && value.toLocaleLowerCase() === "true";
}
static get baseUrl() {
return process.env["BASE_URL"] || "";
}
static get timeout() {
return +process.env["TIMEOUT"] || 30000;
}
}
exports.Settings = Settings;
//# sourceMappingURL=settings.js.map
;