1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-09-14 17:09:07 +00:00

Fixed tests

This commit is contained in:
Dennis Schwerdel
2017-08-08 18:22:39 +02:00
parent c3533569c1
commit 62b4fe40c1
2 changed files with 7 additions and 3 deletions

View File

@@ -63,7 +63,9 @@ describe('Application life cycle test', function () {
function loadPage(callback) {
browser.manage().deleteAllCookies().then(function () {
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn);
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
return browser.get('https://' + app.fqdn);
});
}).then(function () {
return pageLoaded();
}).then(function () {
@@ -96,6 +98,8 @@ describe('Application life cycle test', function () {
function removeFolder(callback) {
browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
return browser.get('https://' + app.fqdn);
}).then(function () {
return pageLoaded();
}).then(function() {
return browser.findElement(by.css('#folders button')).click();