now testing shell

This commit is contained in:
2016-06-05 14:55:08 +02:00
parent 3300f177ca
commit faef4da6be
7 changed files with 65 additions and 22 deletions

File diff suppressed because one or more lines are too long

View File

@ -4,6 +4,7 @@ import path = require("path");
import * as beautylog from "beautylog"
//set up environment
process.env.CI_BUILD_REPO = "https://yyyyyy:xxxxxxxx@gitlab.com/mygroup/myrepo.git";
process.env.NPMTS_TEST = "true";
process.cwd = () => {
return path.join(__dirname,"assets/");
};
@ -39,6 +40,12 @@ describe("NPMCI",function(){
console.log(sortedArrayArg);
done();
})
});
it("should correctly chain Dockerfile handling",function(done){
NpmciBuildDocker.build()
.then(()=>{
done();
});
})
})
})