Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "gulp-csso", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "Minify CSS with CSSO.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
18
test.js
/* jshint node: true */ | ||
/* global describe, it, before, beforeEach, after, afterEach */ | ||
/* global describe, it */ | ||
@@ -17,8 +17,8 @@ 'use strict'; | ||
var stream = csso(); | ||
stream.on('data', function(data) { | ||
expect(String(data.contents)).to.equal(optimalmin); | ||
cb(); | ||
expect(String(data.contents)).to.equal(optimalmin); | ||
cb(); | ||
}); | ||
stream.write(new gutil.File({ | ||
@@ -30,8 +30,8 @@ contents: basestyle | ||
var stream = csso(true); | ||
stream.on('data', function(data) { | ||
expect(String(data.contents)).to.equal(nonoptimal); | ||
cb(); | ||
expect(String(data.contents)).to.equal(nonoptimal); | ||
cb(); | ||
}); | ||
stream.write(new gutil.File({ | ||
@@ -38,0 +38,0 @@ contents: basestyle |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4543
9