From ab0fa5bee71eb8f3291f5897c49ede7f0571f783 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Mon, 28 Apr 2014 11:21:15 -0700 Subject: [PATCH] test: fix global mem leak error --- test/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/index.js b/test/index.js index bc1e7ba3..557de17c 100644 --- a/test/index.js +++ b/test/index.js @@ -3,6 +3,7 @@ var env = require('./support/env'); // whitelist some globals to avoid warnings global.__eio = null; +global.___eio = null; global.WEB_SOCKET_LOGGER = null; global.WEB_SOCKET_SUPPRESS_CROSS_DOMAIN_SWF_ERROR = null; global.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION = null;