Skip to content

Commit

Permalink
dont run fsevents tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
amasad committed Jun 25, 2017
1 parent 402a760 commit 5e3a10f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions test/test.js
Expand Up @@ -7,6 +7,7 @@ var rimraf = require('rimraf');
var path = require('path');
var assert = require('assert');
var tmp = require('tmp');
var os = require('os');

tmp.setGracefulCleanup();
var jo = path.join.bind(path);
Expand All @@ -17,9 +18,13 @@ describe('sane in polling mode', function() {
describe('sane in node mode', function() {
harness.call(this, {});
});
describe('sane in fsevents mode', function() {
harness.call(this, { fsevents: true });
});

if (os.platform() === 'darwin') {
describe('sane in fsevents mode', function() {
harness.call(this, { fsevents: true });
});
}

describe('sane in watchman mode', function() {
harness.call(this, { watchman: true });
});
Expand Down

0 comments on commit 5e3a10f

Please sign in to comment.