Merge pull request #266 from Snugug/feature/better-error-testing

Add file name and line:column to error test
This commit is contained in:
Vincent Prouillet 2015-05-10 13:30:10 +01:00
commit a09fa6bb1a

View file

@ -123,7 +123,12 @@ describe('gulp-sass -- async compile', function() {
var stream = sass();
stream.on('error', function(err) {
// Error must include message body
err.message.indexOf('property "font" must be followed by a \':\'').should.not.equal(-1);
// Error must include file error occurs in
err.message.indexOf('test/scss/error.scss').should.not.equal(-1);
// Error must include line and column error occurs on
err.message.indexOf('2:7').should.not.equal(-1);
done();
});
stream.write(errorFile);