From f810248f6128b5b77f8d9c19e5c07596dbdf3af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Cie=C5=9Blak?= Date: Sat, 24 Oct 2015 21:16:57 +0000 Subject: [PATCH] Disable all tests with --watch Testing cli this way is completely unreliable. A new method of testing is needed. --- test/cli.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/test/cli.js b/test/cli.js index 00c3153b0..541748f60 100644 --- a/test/cli.js +++ b/test/cli.js @@ -215,7 +215,9 @@ describe('cli', function() { done(); }); }); + }); + describe.skip('using --watch option', function() { it('should not exit with the --watch option', function(done) { var src = fixture('simple/index.scss'); var bin = spawn(cli, [src, '--watch']); @@ -301,7 +303,7 @@ describe('cli', function() { }, 500); }); - it.skip('should watch the full scss dep tree for a single file (scss)', function(done) { + it('should watch the full scss dep tree for a single file (scss)', function(done) { var src = fixture('watching/index.scss'); var foo = fixture('watching/white.scss'); @@ -324,7 +326,7 @@ describe('cli', function() { }, 500); }); - it.skip('should watch the full sass dep tree for a single file (sass)', function(done) { + it('should watch the full sass dep tree for a single file (sass)', function(done) { var src = fixture('watching/index.sass'); var foo = fixture('watching/bar.sass'); @@ -347,8 +349,9 @@ describe('cli', function() { }, 500); }); }); - - describe('node-sass --output directory', function() { + + + describe.skip('node-sass watching --output directory', function() { it('should watch whole directory', function(done) { var destDir = fixture('watching-css-out-01/'); var srcDir = fixture('watching-dir-01/');