gulp-symlink
Advanced tools
Comparing version
{ | ||
"name": "gulp-symlink", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Create symlinks during your gulp build.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
/* jshint node: true */ | ||
/* jshint expr:true */ | ||
/* global describe, it, before, beforeEach, after, afterEach */ | ||
/* global describe, it, after */ | ||
@@ -34,3 +34,3 @@ 'use strict'; | ||
stream.on('data', function(data) { | ||
stream.on('data', function() { | ||
expect(fs.existsSync(testPath)).to.be.true; | ||
@@ -48,3 +48,3 @@ expect(fs.lstatSync(testPath).isSymbolicLink()).to.be.true; | ||
stream.on('data', function(data) { | ||
stream.on('data', function() { | ||
expect(fs.existsSync(subTestPath)).to.be.true; | ||
@@ -51,0 +51,0 @@ expect(fs.lstatSync(subTestPath).isSymbolicLink()).to.be.true; |
6478
6.34%9
28.57%