Update eslint-config-appium to the latest version 🚀 (#11952)

* chore(package): update eslint-config-appium to version 4.0.1

* chore: fix linting

* chore: rebase and done
This commit is contained in:
greenkeeper[bot]
2019-01-08 08:43:50 -05:00
committed by Isaac A. Murchie
parent 97f324a58b
commit 10753839a9
21 changed files with 403 additions and 402 deletions

View File

@@ -1,14 +1,14 @@
import path from 'path';
const githubAssetBase = "http://appium.github.io/appium/assets";
const localAssetBase = path.resolve(__dirname, "..", "..", "..", "apps");
const githubAssetBase = 'http://appium.github.io/appium/assets';
const localAssetBase = path.resolve(__dirname, '..', '..', '..', 'apps');
if (process.env.SAUCE_LABS) {
// TODO: Change thes URL's to updated locations
exports.iosTestApp = `${githubAssetBase}/TestApp7.1.app.zip`;
exports.androidApiDemos = `${githubAssetBase}/ApiDemos-debug.apk`;
} else {
exports.iosTestApp = path.resolve(localAssetBase, "TestApp.app.zip");
exports.androidApiDemos = path.resolve(localAssetBase, "ApiDemos-debug.apk");
exports.iosTestApp = path.resolve(localAssetBase, 'TestApp.app.zip');
exports.androidApiDemos = path.resolve(localAssetBase, 'ApiDemos-debug.apk');
}