@progress/kendo-e2e
Version:
Kendo UI end-to-end test utilities.
34 lines • 1.03 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.BSSettings = void 0;
class BSSettings {
static get userName() {
return process.env["BS_USER_NAME"];
}
static get accessKey() {
return process.env["BS_ACCESS_KEY"];
}
static get browserName() {
return process.env["BS_BROWSER_NAME"] || "Android";
}
static get osVersion() {
return process.env["BS_OS_VERSION"] || "10.0";
}
static get deviceName() {
return process.env["BS_DEVICE_NAME"] || "Google Pixel 4";
}
static get realMobile() {
return process.env["BS_REAL_MOBILE"] || "true";
}
static get local() {
return process.env["BS_LOCAL"] || "false";
}
static get buildName() {
return process.env["BS_BUILD_NAME"] || "BStack Test";
}
static get buildNumber() {
return process.env["BS_BUILD_NUMBER"] || "BStack Build 1";
}
}
exports.BSSettings = BSSettings;
//# sourceMappingURL=browserstack-settings.js.map
;