gulp-function/ts/test.ts

34 lines
1.0 KiB
TypeScript
Raw Normal View History

2016-02-01 02:33:33 +00:00
/// <reference path="typings/main.d.ts" />
2015-10-26 15:18:37 +00:00
var gulp = require("gulp");
2016-02-01 02:33:33 +00:00
var gulpFunction = require("../index.js");
var beautylog = require("beautylog");
2015-10-26 15:18:37 +00:00
var myFunction = function () {
2016-02-12 04:36:23 +00:00
beautylog.log("Function executed");
};
var myFunction2 = function () {
beautylog.log("Function2 executed");
2016-02-01 02:33:33 +00:00
};
2015-10-26 15:18:37 +00:00
2016-02-01 02:33:33 +00:00
describe("gulpFunction",function(){
2016-02-12 04:36:23 +00:00
it("should run through smoothly with " + "'forEach'".blue,function(){
gulp.src('./test/*.md')
.pipe(gulpFunction(myFunction,'forEach'))
.pipe(gulp.dest("./test/result/"));
gulp.src('./test/*.md')
.pipe(gulpFunction([myFunction,myFunction2],'forEach'))
.pipe(gulp.dest("./test/result/"));
});
it("should run through smoothly with " + "'atEnd'".blue,function(){
gulp.src('./test/*.md')
.pipe(gulpFunction(myFunction,'atEnd'))
.pipe(gulp.dest("./test/result/"));
gulp.src('./test/*.md')
.pipe(gulpFunction([myFunction,myFunction2],'atEnd'))
.pipe(gulp.dest("./test/result/"));
2016-02-01 02:33:33 +00:00
});
2015-10-26 15:18:37 +00:00
});
2016-02-01 02:33:33 +00:00