From 57fee972af8f091e431e8eca29e95dac7d86f9e6 Mon Sep 17 00:00:00 2001 From: vakrilov Date: Mon, 15 Feb 2016 15:15:03 +0200 Subject: [PATCH] Test swap --- apps/tests/testRunner.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/tests/testRunner.ts b/apps/tests/testRunner.ts index e4df69132..d23d81701 100644 --- a/apps/tests/testRunner.ts +++ b/apps/tests/testRunner.ts @@ -91,14 +91,14 @@ if (!isRunningOnEmulator()) { allTests["LOCATION"] = require("./location-tests"); } -// Navigation tests should always be last. -allTests["NAVIGATION"] = require("./navigation/navigation-tests"); - // Skip transitions on android emulators with API 23 if (!(platform.device.os === platform.platformNames.android && parseInt(platform.device.sdkVersion) === 23 && isRunningOnEmulator())) { allTests["TANSITIONS"] = require("./navigation/transition-tests"); } +// Navigation tests should always be last. +allTests["NAVIGATION"] = require("./navigation/navigation-tests"); + var testsWithLongDelay = { test_Transitions: 3 * 60 * 1000, testLocation: 10000,