24
1
Fork 0

removing timeout limit for front end tests

This commit is contained in:
Abhinav Adduri 2017-07-25 13:14:08 -07:00
parent 93930b91a2
commit 215f0f74ad
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ const driver = new webdriver.Builder()
.build();
driver.get(path.join('file:///', __dirname, '/frontend.test.html'));
driver.wait(until.titleIs('Mocha Tests'), 10000);
driver.wait(until.titleMatches(/^[0-1]$/), 10000);
driver.wait(until.titleIs('Mocha Tests'));
driver.wait(until.titleMatches(/^[0-1]$/));
driver.getTitle().then(title => {
driver.quit().then(() => {