full docker workflow now implemented

This commit is contained in:
2016-06-07 04:31:25 +02:00
parent fe0b99309b
commit 9f4a3783a1
8 changed files with 62 additions and 28 deletions

File diff suppressed because one or more lines are too long

View File

@ -59,7 +59,7 @@ describe("NPMCI",function(){
});
});
describe(".test.npm",function(){
it("should source nvm using bash and install a specific node version",function(done){
it("should source nvm using bash and install a specific node version, then test it",function(done){
NpmciTest.test("legacy")
.then(() => {
return NpmciTest.test("lts");
@ -68,8 +68,13 @@ describe("NPMCI",function(){
return NpmciTest.test("stable");
})
.then(() => {
return NpmciTest.test("docker");
})
done();
});
})
});
describe("test.docker",function(){
it("should test dockerfiles",function(done){
NpmciTest.test("docker")
.then(() => {
done();
});