"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": "storage:filename=Zip_Sandbox_base.apk", "deviceName": "Google Pixel.*", "platformVersion": "11.0", "automationName": "UIAutomator2", "appActivity": "co.zip.view.welcome.InitActivity", "newCommandTimeout": 240, "enforceAppInstall": true, "appiumVersion": "1.20.1", "build": buildName, }, ]; exports.config = wdio_shared_sauce_conf_1.default;