Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Disable all tests with --watch #1216

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions test/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down Expand Up @@ -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');

Expand All @@ -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');

Expand All @@ -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/');
Expand Down