From 15a52ab7217dedd2c6f46dfd66fe97a48761ffa9 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Wed, 30 Sep 2020 16:11:54 +0200 Subject: [PATCH] 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. --- test/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/connection.js b/test/connection.js index 0a9edae2a..d4e7d718d 100644 --- a/test/connection.js +++ b/test/connection.js @@ -458,7 +458,7 @@ describe('connection', function () { var socket = manager.socket('/room1'); - setTimeout(() => { + setTimeout(function () { manager.socket('/room2'); }, delay); });