Skip to content

Commit

Permalink
functional tests: catch browser.getSession() errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Jan 30, 2017
1 parent 805a135 commit 8159be0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/auto/hlsjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ for (var name in streams) {
}.bind(this)).then(function() {
console.log("Test page loaded.");
});
}.bind(this));
}.bind(this), function(err) {
console.log('error while Retrieving browser session:' + err);
});
});

afterEach(function() {
Expand Down

0 comments on commit 8159be0

Please sign in to comment.