move driverblock_harmony out of lint range

This commit is contained in:
Jonathan Lipps
2013-09-04 13:13:19 -07:00
parent e6673eb689
commit 7bdf2abd32
2 changed files with 3 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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');