Fix ui-tests-app paths. Not tested. Depends on the tests app

This commit is contained in:
Erjan Gavalji
2015-03-24 14:22:31 +02:00
parent ecc66b83e4
commit bd7c0ef4f0
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import application = require("application");
application.mainModule = "app/mainPage";
application.mainModule = "mainPage";
application.onUncaughtError = function (error: application.NativeScriptError) {
console.warn(error.message);

View File

@ -10,7 +10,7 @@ trace.enable();
trace.setCategories(trace.categories.Test);
export function createPage() {
var basePath = "app/pages/";
var basePath = "../tests/pages/";
var txtInput = new text.TextView();
var btn = new button.Button();
@ -39,4 +39,4 @@ export function createPage() {
var page = new pages.Page();
page.content = grid;
return page;
}
}