Skip to content

Commit

Permalink
Update docker.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKolarik committed Nov 28, 2024
1 parent df8ac9c commit d173621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ class DockerManager {
});

await container.start({});
console.log(await container.exec({ Cmd: 'ip addr'.split(' ') }));
console.log(await container.exec({ Cmd: [ 'ping', '-6', '-c 3', 'www.jsdelivr.com' ] }));
await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: 'ip addr'.split(' ') })).start({});
await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ 'ping', '-6', '-c 3', 'www.jsdelivr.com' ] })).start({});
await this.attachLogs(container);
}

Expand Down

0 comments on commit d173621

Please sign in to comment.