UNPKG
promised-exec
Version:
latest (1.0.1)
1.0.1
1.0.0
Promised execution of terminal command.
github.com/yakimchuk/promised-exec
yakimchuk/promised-exec
promised-exec
/
gulptask.test.js
13 lines
(8 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
var
gulp, jasmine, config; gulp =
require
(
'gulp'
); jasmine =
require
(
'gulp-jasmine'
); config =
require
(
'./config.json'
);
module
.
exports
=
function
(
) {
return
gulp.
src
(config.
tests
).
pipe
(
jasmine
()); };