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 d41b830 commit dacbd0b
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 @@ -62,8 +62,8 @@ class DockerManager {

await container.start({});
// (await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ '/bin/sh', '-c', 'ip addr' ] })).start({})).pipe(process.stdout);
(await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ '/bin/sh', '-c', '/cat /etc/hosts' ] })).start({})).pipe(process.stdout);
(await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ '/bin/sh', '-c', 'ping -6 -c 3 www.jsdelivr.com' ] })).start({})).pipe(process.stdout);
(await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ '/bin/bash', '-c', 'cat /etc/hosts' ] })).start({})).pipe(process.stdout);
(await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ '/bin/bash', '-c', 'ping -6 -c 3 www.jsdelivr.com' ] })).start({})).pipe(process.stdout);
await this.attachLogs(container);
}

Expand Down

0 comments on commit dacbd0b

Please sign in to comment.