]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
use chrome instead of ff for tests
authorJohannes Zellner <johannes@nebulon.de>
Fri, 26 Aug 2016 16:03:48 +0000 (18:03 +0200)
committerJohannes Zellner <johannes@nebulon.de>
Fri, 26 Aug 2016 16:03:48 +0000 (18:03 +0200)
test/test.js

index de1bf0b2dd9a191546735032d861deed67f9268d..23338da170604cd1237707ead59827a55b0771c3 100644 (file)
@@ -23,8 +23,8 @@ if (!process.env.USERNAME || !process.env.PASSWORD) {
 describe('Application life cycle test', function () {
     this.timeout(0);
 
-    var firefox = require('selenium-webdriver/firefox');
-    var server, browser = new firefox.Driver();
+    var chrome = require('selenium-webdriver/chrome');
+    var server, browser = new chrome.Driver();
 
     before(function (done) {
         var seleniumJar= require('selenium-server-standalone-jar');
@@ -119,7 +119,7 @@ describe('Application life cycle test', function () {
         done();
     }
 
-    it('build app', function () {
+    xit('build app', function () {
         execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
     });