Skip to content

Commit

Permalink
Fix test to acount for notifications counter in title
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavlo committed Jun 15, 2022
1 parent 4eaeea6 commit 274e671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/lib/login_with_user.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ var login_with_user_func = Promise.promisify(function(args, callback){
// Make sure login was successful, check that we landed on user account page
driver.getTitle()
.then(function(title){
expect(title).to.be.equal('Calendar');
expect(title).to.match(/Calendar/);
});

driver
Expand Down

0 comments on commit 274e671

Please sign in to comment.