aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.js b/test/test.js
index de1bf0b..23338da 100644
--- a/test/test.js
+++ b/test/test.js
@@ -23,8 +23,8 @@ if (!process.env.USERNAME || !process.env.PASSWORD) {
23describe('Application life cycle test', function () { 23describe('Application life cycle test', function () {
24 this.timeout(0); 24 this.timeout(0);
25 25
26 var firefox = require('selenium-webdriver/firefox'); 26 var chrome = require('selenium-webdriver/chrome');
27 var server, browser = new firefox.Driver(); 27 var server, browser = new chrome.Driver();
28 28
29 before(function (done) { 29 before(function (done) {
30 var seleniumJar= require('selenium-server-standalone-jar'); 30 var seleniumJar= require('selenium-server-standalone-jar');
@@ -119,7 +119,7 @@ describe('Application life cycle test', function () {
119 done(); 119 done();
120 } 120 }
121 121
122 it('build app', function () { 122 xit('build app', function () {
123 execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); 123 execSync('cloudron build', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
124 }); 124 });
125 125