(input: {
readonly check: Effect.Effect<boolean, E, R>;
readonly timeoutMs: number;
readonly intervalMs: number;
})
| 215 | }); |
| 216 | |
| 217 | export const waitForUnreachable = <E, R>(input: { |
| 218 | readonly check: Effect.Effect<boolean, E, R>; |
| 219 | readonly timeoutMs: number; |
| 220 | readonly intervalMs: number; |
| 221 | }): Effect.Effect<boolean, E, R> => |
| 222 | waitForCondition({ |
| 223 | check: input.check, |
| 224 | expected: false, |
| 225 | timeoutMs: input.timeoutMs, |
| 226 | intervalMs: input.intervalMs, |
| 227 | }); |
| 228 | |
| 229 | const toProbeHost = (hostname: string): string => { |
| 230 | const normalized = hostname.trim().toLowerCase(); |
no test coverage detected