2
Fork 0

add some tests

This commit is contained in:
Willem 2015-02-27 03:31:44 +01:00
parent 3f580bbe2d
commit 50f2b83443
7 changed files with 173 additions and 10 deletions

View file

@ -58,6 +58,9 @@ function buildStepConfigCreate(builder, buildConfig, callback) {
}
function AssetsBuilder(config) {
if (config === undefined) {
throw new Error('no config');
}
this.config = config;
this.startTime = 0;
this.currentAssetType = '';

View file

@ -122,7 +122,9 @@ var builderAssemblerCreate = {
},
};
var builderEmptyCallback = function () {};
var builderEmptyCallback = function () {
return function () {};
};
module.exports = {
assembler: {