fix various tests based on new structure

This commit is contained in:
Jonathan Lipps
2013-01-25 10:21:23 -08:00
committed by Sebastian Tiedtke
parent f21b9c61c8
commit 53d8fc1f2c
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ module.exports = function(grunt) {
grunt.initConfig({
lint: {
all: ['*.js', 'app/*.js', 'app/test/unit/*.js', 'instruments/*.js', 'test/functional/*.js', 'test/unit/*.js', 'test/uicatalog/*.js', 'test/helpers/*.js', 'test/appiumutils/*.js']
all: ['*.js', 'app/*.js', 'app/test/unit/*.js', 'instruments/*.js', 'test/functional/*.js', 'test/unit/*.js', 'test/functional/appium/*.js', 'test/functional/appiumutils/*.js', 'test/functional/testapp/*.js', 'test/functional/uicatalog/*.js', 'test/helpers/*.js']
}
, jshint: {
all: {

View File

@@ -2,7 +2,7 @@
/*global afterEach:true */
"use strict";
var runServer = require("../../server.js").run
var runServer = require("../../../server.js").run
, should = require("should")
, path = require("path");
@@ -15,7 +15,7 @@ describe("appiumutils", function() {
before(function(done) {
server = runServer({
app: path.resolve(__dirname, "../../sample-code/apps/UICatalog/build/Release-iphonesimulator/UICatalog.app")
app: path.resolve(__dirname, "../../../sample-code/apps/UICatalog/build/Release-iphonesimulator/UICatalog.app")
, verbose: false
, udid: null
, port: 4723