Commit 80c07b97 by Michael Mifsud

Merge pull request #1260 from xzyfer/fix/random-tests

Disable randomly failing watcher tests
parents 971f4044 e2bafa37
......@@ -235,7 +235,7 @@ describe('cli', function() {
}, 100);
});
it('should emit `warn` on file change when using --watch option', function(done) {
it.skip('should emit `warn` on file change when using --watch option', function(done) {
var src = fixture('simple/tmp.scss');
fs.writeFileSync(src, '');
......@@ -255,7 +255,7 @@ describe('cli', function() {
}, 500);
});
it('should emit nothing on file change when using --watch and --quiet options', function(done) {
it.skip('should emit nothing on file change when using --watch and --quiet options', function(done) {
var src = fixture('simple/tmp.scss');
var didEmit = false;
fs.writeFileSync(src, '');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment