increased smoke timeout, instead npm start sleep time
authorTravis Webb <me@traviswebb.com>
Mon, 16 Jun 2014 19:30:31 +0000 (15:30 -0400)
committerTravis Webb <me@traviswebb.com>
Mon, 16 Jun 2014 19:30:31 +0000 (15:30 -0400)
.travis.yml
test/lib/smoke.js
test/lib/zombie_auth.js

index 428d986..cca00c1 100644 (file)
@@ -11,7 +11,7 @@ before_script:
   - sudo npm run server-setup
   - npm run test-build
   - npm start &
-  - sleep 5
+  - sleep 10
 
 script:
   - npm test
index df0c588..07f8a90 100644 (file)
     var workspaceContainer,
       workspace;
     it('can get to a new workspace', function (done) {
-      this.timeout(10 * 1000);
+      this.timeout(20 * 1000);
       navigateToNewWorkspace(XT.app, spec.listKind, function (_workspaceContainer) {
         workspaceContainer = _workspaceContainer;
         done();
index 6baf321..78acb8e 100644 (file)
@@ -110,7 +110,7 @@ var assert = require('assert'),
       }
     };
 
-    zombie.visit(host, {debug: verboseMode}, function (e, browser) {
+    zombie.visit(host, {runScripts: false, debug: verboseMode}, function (e, browser) {
       if (e) {
         console.log("Zombie visit error: ", e);
       }