Skip to content

Commit

Permalink
Fix test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben Bridgewater committed Jan 16, 2017
1 parent 8688986 commit c4b9b4e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/commands/monitor.spec.js
Expand Up @@ -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'
Expand Down

0 comments on commit c4b9b4e

Please sign in to comment.