Skip to content

Commit 15a52ab

Browse files
test: remove arrow function (for now)
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.
1 parent 050108b commit 15a52ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ describe('connection', function () {
458458

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

461-
setTimeout(() => {
461+
setTimeout(function () {
462462
manager.socket('/room2');
463463
}, delay);
464464
});

0 commit comments

Comments
 (0)