now working

This commit is contained in:
2016-06-05 17:17:15 +02:00
parent c718593162
commit d3dcc2f8ab
7 changed files with 46 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -11,6 +11,7 @@ process.cwd = () => {
//require NPMCI files
import NpmciBuildDocker = require("../dist/npmci.build.docker");
import NpmciPublish = require("../dist/npmci.publish");
import NpmciTest = require("../dist/npmci.test");
@ -49,6 +50,14 @@ describe("NPMCI",function(){
});
})
});
describe(".publish.docker",function(){
it("should publish all built Dockerfiles",function(done){
NpmciPublish.publish("docker")
.then(() => {
done();
});;
});
});
describe(".test.npm",function(){
it("should source nvm using bash and install a specific node version",function(done){
NpmciTest.test("legacy")