Skip to content

Commit

Permalink
test: remove arrow function (for now)
Browse files Browse the repository at this point in the history
It was included by the previous commit, but the test code is not
currently transpiled to ES5 so it breaks IE in the CI.

Let's use a plain function for now.
  • Loading branch information
darrachequesne committed Sep 30, 2020
1 parent 050108b commit 15a52ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ describe('connection', function () {

var socket = manager.socket('/room1');

setTimeout(() => {
setTimeout(function () {
manager.socket('/room2');
}, delay);
});
Expand Down

0 comments on commit 15a52ab

Please sign in to comment.