Skip to content

Commit

Permalink
Add manual test gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 20, 2017
1 parent 83735a6 commit 4e05dce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';
const gulp = require('gulp');
const mocha = require('.');

gulp.task('default', () =>
gulp.src('test/fixtures/fixture-pass.js', {read: false})
.pipe(mocha())
);
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"through2": "^2.0.3"
},
"devDependencies": {
"gulp": "^3.9.1",
"xo": "*"
},
"xo": {
Expand Down

0 comments on commit 4e05dce

Please sign in to comment.