Browse Source

now let’s try moving fallback test to the end

Artur Paikin 8 years ago
parent
commit
42411272e2
1 changed files with 4 additions and 4 deletions
  1. 4 4
      test/acceptance/index.js

+ 4 - 4
test/acceptance/index.js

@@ -112,10 +112,6 @@ var specificTests = {
 
 function runAllTests () {
   if (isRemoteTest) {
-    // run custom platform-specific tests here
-    // fallback test
-    specificTests.fallback()
-
     // run all tests for all platforms
     platforms.forEach(function (platform) {
       tests.forEach(function (test) {
@@ -123,6 +119,10 @@ function runAllTests () {
         test(driver, platform, host)
       })
     })
+
+    // run custom platform-specific tests here
+    // fallback test
+    specificTests.fallback()
   } else {
     // run tests just for local Firefox
     tests.forEach(function (test) {