fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-30 17:06:26 +00:00
parent 5e5bb3032c
commit 8b6021ff66

View File

@ -6,9 +6,7 @@ let testDockerHost: docker.DockerHost;
if (process.env.CI) {
tap.test('ci placeholder', async () => {});
tap.start();
process.exit(0);
}
} else {
tap.test('should create a new Dockersock instance', async () => {
testDockerHost = new docker.DockerHost('http://unix:/var/run/docker.sock:');
return expect(testDockerHost).to.be.instanceof(docker.DockerHost);
@ -117,3 +115,4 @@ tap.test('should create a service', async () => {
});
tap.start();
}