1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-04-01 08:32:45 +00:00

Fix paranthesis

This commit is contained in:
Girish Ramakrishnan 2018-05-02 13:22:27 -07:00
parent 391419d9f4
commit 5c2828f669

@ -102,7 +102,7 @@ describe('Application life cycle test', function () {
function checkFolder(callback) {
browser.get('https://' + app.fqdn).then(function () {
return browser.wait(until.elementLocated(by.xpath(`//span[text()="${FOLDER}"]`), TEST_TIMEOUT));
return browser.wait(until.elementLocated(by.xpath(`//span[text()="${FOLDER}"]`)), TEST_TIMEOUT);
}).then(function () {
callback();
});