"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var path_1 = require("path"); var wdio_shared_sauce_conf_1 = require("./wdio.shared.sauce.conf"); var buildName = "ZipPay app test: " + new Date().getTime(); // ================== // Specify Test Files // ================== // wdio_shared_sauce_conf_1.default.specs = ['./test/**/*.js']; // ============ // Capabilities // ============ // // For all capabilities please check // http://appium.io/docs/en/writing-running-appium/caps/#general-capabilities wdio_shared_sauce_conf_1.default.capabilities = [ { // The defaults you need to have in your config "platformName": "android", // "app": './apps/Zip_Sandbox_base.apk', // 'app':'a9d9719d-61b5-4ae5-a8dd-a043dd3d6bb7', "app": "storage:filename=Zip_Sandbox_base.apk", // 'app': 'storage:a9d9719d-61b5-4ae5-a8dd-a043dd3d6bb7', // "app": path_1.join(process.cwd(),'./apps/Zip_Sandbox_base.apk'), // "appium:platformVersion": "11.0", // We're using dynamic device allocation // See https://docs.saucelabs.com/mobile-apps/automated-testing/appium/real-devices/#dynamic-device-allocation // 'appium:deviceName': '(Samsung Galaxy S(7|8|9|10|20|21).*)|(Google Pixel.*)', "deviceName": "Google Pixel.*", "platformVersion": "11.0", "automationName": "UIAutomator2", // The name of the App in the Sauce Labs storage, for more info see // https://docs.saucelabs.com/mobile-apps/app-storage/ "appActivity": "co.zip.view.welcome.InitActivity", "newCommandTimeout": 240, "enforceAppInstall": true, "appiumVersion": "1.20.1", "build": buildName, }, ]; exports.config = wdio_shared_sauce_conf_1.default;