fix(core): update

This commit is contained in:
2019-08-16 12:48:40 +02:00
parent f772ca15ef
commit b2a7e67868
5 changed files with 57 additions and 3 deletions

View File

@ -52,4 +52,14 @@ tap.test('should return a change Observable', async tools => {
subscription.unsubscribe();
});
// SERVICES
tap.test('should activate swarm mode', async () => {
await testDockerHost.activateSwarm();
});
tap.test('should list all services', async tools => {
const services = await docker.DockerService.getServices(testDockerHost);
console.log(services);
});
tap.start();