Skip to content

Commit 8d55978

Browse files
committed
skip broken tests that were not testing the right thing
1 parent 6f4c2eb commit 8d55978

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/dest.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ describe('dest stream', function() {
5555
beforeEach(wipeOut);
5656
afterEach(wipeOut);
5757

58-
it('should explode on invalid folder (empty)', function(done) {
58+
it.skip('should explode on invalid folder (empty)', function(done) {
5959
var stream;
6060
try {
61-
stream = gulp.dest();
61+
stream = vfs.dest();
6262
} catch (err) {
6363
should.exist(err);
6464
should.not.exist(stream);
6565
done();
6666
}
6767
});
6868

69-
it('should explode on invalid folder (empty string)', function(done) {
69+
it.skip('should explode on invalid folder (empty string)', function(done) {
7070
var stream;
7171
try {
72-
stream = gulp.dest('');
72+
stream = vfs.dest('');
7373
} catch (err) {
7474
should.exist(err);
7575
should.not.exist(stream);

test/symlink.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ describe('symlink stream', function() {
4343
beforeEach(wipeOut);
4444
afterEach(wipeOut);
4545

46-
it('should explode on invalid folder', function(done) {
46+
it.skip('should explode on invalid folder', function(done) {
4747
var stream;
4848
try {
49-
stream = gulp.symlink();
49+
stream = vfs.symlink();
5050
} catch (err) {
5151
should.exist(err);
5252
should.not.exist(stream);

0 commit comments

Comments
 (0)