Skip to content

Commit c4b9b4e

Browse files
author
Ruben Bridgewater
committed
Fix test on windows
1 parent 8688986 commit c4b9b4e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/commands/monitor.spec.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ describe("The 'monitor' method", function () {
8080
});
8181

8282
it('monitors returns strings in the rawOutput even with return_buffers activated', function (done) {
83+
if (process.platform === 'win32') {
84+
this.skip();
85+
}
8386
var monitorClient = redis.createClient({
8487
return_buffers: true,
8588
path: '/tmp/redis.sock'

0 commit comments

Comments
 (0)