BREAKING CHANGE(DockerHost): Rename array-returning get* methods to list* on DockerHost and related resource classes; update docs, tests and changelog

This commit is contained in:
2025-11-24 13:27:10 +00:00
parent 15e5dedae4
commit 08dbad47bc
12 changed files with 61 additions and 34 deletions

View File

@@ -22,13 +22,13 @@ tap.test('should create a docker swarm', async () => {
// Containers
tap.test('should list containers', async () => {
const containers = await testDockerHost.getContainers();
const containers = await testDockerHost.listContainers();
console.log(containers);
});
// Networks
tap.test('should list networks', async () => {
const networks = await testDockerHost.getNetworks();
const networks = await testDockerHost.listNetworks();
console.log(networks);
});
@@ -86,7 +86,7 @@ tap.test('should activate swarm mode', async () => {
});
tap.test('should list all services', async (tools) => {
const services = await testDockerHost.getServices();
const services = await testDockerHost.listServices();
console.log(services);
});
@@ -169,7 +169,7 @@ tap.test('should expose a working DockerImageStore', async () => {
let testContainer: docker.DockerContainer;
tap.test('should get an existing container for streaming tests', async () => {
const containers = await testDockerHost.getContainers();
const containers = await testDockerHost.listContainers();
// Use the first running container we find
testContainer = containers.find((c) => c.State === 'running');