1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Fix test on windows

This commit is contained in:
Ruben Bridgewater
2017-01-16 09:53:31 +01:00
parent 8688986051
commit c4b9b4ea26

View File

@@ -80,6 +80,9 @@ describe("The 'monitor' method", function () {
}); });
it('monitors returns strings in the rawOutput even with return_buffers activated', function (done) { it('monitors returns strings in the rawOutput even with return_buffers activated', function (done) {
if (process.platform === 'win32') {
this.skip();
}
var monitorClient = redis.createClient({ var monitorClient = redis.createClient({
return_buffers: true, return_buffers: true,
path: '/tmp/redis.sock' path: '/tmp/redis.sock'