From c4b9b4ea2636772133eb0521d6358d4ed0e11585 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Mon, 16 Jan 2017 09:53:31 +0100 Subject: [PATCH] Fix test on windows --- test/commands/monitor.spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/commands/monitor.spec.js b/test/commands/monitor.spec.js index ec287ccba71..a6c98747309 100644 --- a/test/commands/monitor.spec.js +++ b/test/commands/monitor.spec.js @@ -80,6 +80,9 @@ describe("The 'monitor' method", function () { }); it('monitors returns strings in the rawOutput even with return_buffers activated', function (done) { + if (process.platform === 'win32') { + this.skip(); + } var monitorClient = redis.createClient({ return_buffers: true, path: '/tmp/redis.sock'