mirror of
https://github.com/appium/appium.git
synced 2026-01-26 12:18:51 -06:00
move driverblock_harmony out of lint range
This commit is contained in:
@@ -135,9 +135,9 @@ var describeForApp = function(app, device, appPackage, appActivity, appWaitActiv
|
||||
appPath = app;
|
||||
} else {
|
||||
if (device === "ios") {
|
||||
appPath = path.resolve(__dirname, "../../sample-code/apps/" + app + "/build/Release-iphonesimulator/" + app + ".app");
|
||||
appPath = path.resolve(__dirname, "../../../sample-code/apps/" + app + "/build/Release-iphonesimulator/" + app + ".app");
|
||||
} else if (device === "android" || device === "selendroid") {
|
||||
appPath = path.resolve(__dirname, "../../sample-code/apps/" + app + "/bin/" + app + "-debug.apk");
|
||||
appPath = path.resolve(__dirname, "../../../sample-code/apps/" + app + "/bin/" + app + "-debug.apk");
|
||||
} else {
|
||||
appPath = app;
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
"use strict";
|
||||
|
||||
var driverBlock = require('../../helpers/driverblock_harmony.js')
|
||||
var driverBlock = require('../helpers/driverblock_harmony.js')
|
||||
, describe = driverBlock.describeForApp('UICatalog')
|
||||
, it = driverBlock.it
|
||||
, should = require('should');
|
||||
|
||||
Reference in New Issue
Block a user