remove explicit timeout for polling as well

This commit is contained in:
Bruno Windels 2019-04-16 15:41:45 +02:00
parent eae830a4d4
commit ee1e585301
3 changed files with 4 additions and 3 deletions

View file

@ -68,7 +68,7 @@ module.exports = async function signup(session, username, password, homeserver)
const foundHomeUrl = await session.poll(async () => {
const url = session.page.url();
return url === session.url('/#/home');
}, 5000);
});
assert(foundHomeUrl);
session.log.done();
}