UNPKG
codeship
Version:
latest (0.1.1)
0.1.1
0.1.0
An API wrapper of Codeship
github.com/John-Lin/codeship-api
John-Lin/codeship-api
codeship
/
gulpfile.js
9 lines
(7 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
let
gulp =
require
(
'gulp'
);
let
mocha =
require
(
'gulp-mocha'
); gulp.
task
(
'spec'
,
() =>
{
return
gulp.
src
(
'test/*_spec.js'
, {
read
:
false
}) .
pipe
(
mocha
()); });