fix(core): update

This commit is contained in:
2024-02-02 16:54:07 +01:00
parent bbdf61e0a9
commit 8d74712a97
3 changed files with 9 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import * as docker from '../ts/index.js';
let testDockerHost: docker.DockerHost;
tap.test('should create a new Dockersock instance', async () => {
testDockerHost = new docker.DockerHost('http://unix:/var/run/docker.sock:');
testDockerHost = new docker.DockerHost();
return expect(testDockerHost).toBeInstanceOf(docker.DockerHost);
});