We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f9253c + c13b5a1 commit d765342Copy full SHA for d765342
.travis.yml
@@ -2,5 +2,6 @@ sudo: false
2
language: node_js
3
node_js:
4
- iojs
5
+ - "stable"
6
- "0.12"
7
- "0.10"
test.js
@@ -271,7 +271,7 @@ describe('PostCSS Guidelines', function () {
271
var stream = postcss([ doubler ])
272
var cssPath = __dirname + '/src/fixture.css'
273
function Warning (msg) {
274
- this.toSting = function () {
+ this.toString = function () {
275
return msg
276
}
277
@@ -285,7 +285,7 @@ describe('PostCSS Guidelines', function () {
285
}))
286
287
stream.on('data', function () {
288
- gutil.log.calledWith('gulp-postcss:', '/src/fixture.css\nmsg1\nmsg2')
+ assert(gutil.log.calledWith('gulp-postcss:', 'src' + path.sep + 'fixture.css\nmsg1\nmsg2'))
289
cb()
290
})
291
0 commit comments