Skip to content

Commit

Permalink
fix: afterEach callback should return a promise
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Mar 2, 2018
1 parent 409b9ca commit 44aa769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/auto/hlsjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ describe('testing hls.js playback in the browser on "'+browserDescription+'"', f

afterEach(function() {
var browser = this.browser;
browser.executeScript('return logString').then(function(return_value){
return browser.executeScript('return logString').then(function(return_value){
console.log('travis_fold:start:debug_logs');
console.log('logs');
console.log(return_value);
Expand Down

0 comments on commit 44aa769

Please sign in to comment.