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

Commit

Permalink
disable fs.watchFile tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Zinkovsky committed Mar 3, 2012
1 parent 578ba76 commit 61be684
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/pummel/test-fs-watch-file.js
Expand Up @@ -19,7 +19,10 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.


// fs.watchFile is not available on Windows
if (process.platform === 'win32') {
process.exit(0);
}


var common = require('../common');
Expand Down
5 changes: 5 additions & 0 deletions test/pummel/test-watch-file.js
Expand Up @@ -19,6 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

// fs.watchFile is not available on Windows
if (process.platform === 'win32') {
process.exit(0);
}

var common = require('../common');
var assert = require('assert');

Expand Down

0 comments on commit 61be684

Please sign in to comment.