DEV;Fix tests, lint and build

This commit is contained in:
romanjaros 2021-08-03 08:00:06 +02:00
parent 8a8cf962d8
commit 40deb32d91
17 changed files with 81 additions and 110 deletions

View file

@ -1,11 +1,5 @@
var config = require('../e2e_app_config.json');
module.exports = {
'Welcome page': function (browser) {
browser
.url('http://' + config.IP + ':' + config.PORT)
.waitForElementVisible('body', 1000)
.assert.title('Storybook')
.end();
browser.url(browser.launchUrl).waitForElementVisible('body', 1000).assert.title('Storybook').end();
},
};