Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
test-fs-watch: Add faster failure, and link to #2813
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Feb 23, 2012
1 parent 92cb684 commit 9a6f936
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/simple/test-fs-watch.js
Expand Up @@ -24,6 +24,14 @@ var assert = require('assert');
var path = require('path');
var fs = require('fs');


if (process.platform === 'darwin') {
assert(false,
'This test is known to fail on OS X\n' +
'See: https://github.com/joyent/node/issues/2813');
}


var expectFilePath = process.platform == 'win32' || process.platform == 'linux';

var watchSeenOne = 0;
Expand Down

0 comments on commit 9a6f936

Please sign in to comment.