Update test deps
This commit is contained in:
parent
969b349508
commit
35858fb399
3 changed files with 300 additions and 515 deletions
797
test/package-lock.json
generated
797
test/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -8,17 +8,11 @@
|
|||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"ejs": "^3.1.3",
|
||||
"dependencies": {
|
||||
"expect.js": "^0.3.1",
|
||||
"mkdirp": "^1.0.4",
|
||||
"mocha": "^7.2.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"mocha": "^8.0.1",
|
||||
"selenium-server-standalone-jar": "^3.141.59",
|
||||
"selenium-webdriver": "^3.6.0",
|
||||
"superagent": "^5.2.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"chromedriver": "^83.0.0"
|
||||
"chromedriver": "^83.0.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,8 +13,7 @@ require('chromedriver');
|
|||
|
||||
var execSync = require('child_process').execSync,
|
||||
expect = require('expect.js'),
|
||||
path = require('path'),
|
||||
webdriver = require('selenium-webdriver');
|
||||
path = require('path');
|
||||
|
||||
var by = require('selenium-webdriver').By,
|
||||
until = require('selenium-webdriver').until,
|
||||
|
@ -30,8 +29,6 @@ describe('Application life cycle test', function () {
|
|||
this.timeout(0);
|
||||
|
||||
var server, browser = new Builder().forBrowser('chrome').build();
|
||||
var username = process.env.USERNAME, password = process.env.PASSWORD;
|
||||
var email = process.env.EMAIL;
|
||||
|
||||
before(function (done) {
|
||||
var seleniumJar= require('selenium-server-standalone-jar');
|
||||
|
@ -63,7 +60,6 @@ describe('Application life cycle test', function () {
|
|||
}
|
||||
|
||||
var LOCATION = 'test';
|
||||
var TEST_TIMEOUT = parseInt(process.env.TIMEOUT, 10) || 30000;
|
||||
var app;
|
||||
|
||||
xit('build app', function () {
|
||||
|
|
Loading…
Reference in a new issue