implement pullImage()

This commit is contained in:
2016-06-16 08:47:21 +02:00
parent 5cbcba2f1e
commit 51bf5cfd72
5 changed files with 69 additions and 9 deletions

View File

@ -25,5 +25,12 @@ describe("dockersock",function(){
done();
});
});
it("should pull an image from imagetag",function(done){
this.timeout(10000);
testDockersock.pullImage("nginx")
.then((dataArg)=>{
done();
},done);
})
});
});