]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Use nyan reporter for Sass unit tests because it's important
authorGeoff Kimball <geoff@zurb.com>
Wed, 13 Jan 2016 00:31:57 +0000 (16:31 -0800)
committerGeoff Kimball <geoff@zurb.com>
Wed, 13 Jan 2016 00:31:57 +0000 (16:31 -0800)
gulp/test.js

index b092dea234e02994d90a3cc772ec1049b96e8291..7574aa01b9c3faf58fc61a5b84594cf55c77d7c6 100644 (file)
@@ -6,8 +6,8 @@ var mocha = require('gulp-mocha');
 gulp.task('test', ['test:sass', 'test:javascript']);
 
 gulp.task('test:sass', function() {
-  return gulp.src('./test/sass/test_sass.js', {read: false})
-    .pipe(mocha());
+  return gulp.src('./test/sass/test_sass.js', { read: false })
+    .pipe(mocha({ reporter: 'nyan' }));
 });
 
 gulp.task('test:javascript', function(cb) {