We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1895a commit b4eb160Copy full SHA for b4eb160
src/integrationTestHelpers/dockerHelpers.ts
@@ -133,7 +133,9 @@ export async function waitForRpc(params: {
133
if (Date.now() >= deadline) {
134
const containerContext =
135
failIfContainerExited && getContainerStatus(failIfContainerExited)
136
- ? ` (container ${failIfContainerExited} status: ${getContainerStatus(failIfContainerExited)})`
+ ? ` (container ${failIfContainerExited} status: ${getContainerStatus(
137
+ failIfContainerExited,
138
+ )})`
139
: '';
140
const logs =
141
failIfContainerExited && getContainerStatus(failIfContainerExited) !== 'running'
0 commit comments