Output to a log file. Simulate adjusting the androidmanifest

This commit is contained in:
Erjan Gavalji
2015-10-08 15:42:59 +03:00
parent 4bad17d3ac
commit ac78de2128
3 changed files with 17 additions and 5 deletions

View File

@@ -7,9 +7,15 @@ trace.enable();
trace.addCategories(trace.categories.Test + "," + trace.categories.Error);
export function createPage() {
tests.runAll();
// tests.runAll();
var page = new Page();
page.content = new GridLayout();
page.on("navigatedTo", function() {
setTimeout(function() {
tests.runAll();
}, 3000);
});
// page.content = new GridLayout();
return page;
}
}