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 d173621 commit 2acc869
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({});
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 (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: 'ip addr'.split(' ') })).start({})).pipe(process.stdout);
(await (await container.exec({ AttachStdout: true, AttachStderr: true, Cmd: [ 'ping', '-6', '-c 3', 'www.jsdelivr.com' ] })).start({})).pipe(process.stdout);
await this.attachLogs(container);
}

Expand Down

0 comments on commit 2acc869

Please sign in to comment.