forked from cloudron-apps/peertube-app
Fix test
This commit is contained in:
parent
0bd81a757e
commit
12bcc926d2
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ describe('Application life cycle test', function () {
|
||||||
|
|
||||||
function videoExists(done) {
|
function videoExists(done) {
|
||||||
browser.get('https://' + app.fqdn + '/my-account/videos').then(function () {
|
browser.get('https://' + app.fqdn + '/my-account/videos').then(function () {
|
||||||
return browser.wait(until.elementLocated(By.xpath('//a[@title="Cloudron Test Video"]')), TEST_TIMEOUT);
|
return browser.wait(until.elementLocated(By.xpath('//a[contains(@title, "Cloudron Test Video")]')), TEST_TIMEOUT);
|
||||||
}).then(function () {
|
}).then(function () {
|
||||||
return done();
|
return done();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue