12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
|
#!/usr/bin/env bats
|
||
|
|
||
|
load helpers
|
||
|
|
||
|
@test "gateway-primary proxy admin is up on :19000" {
|
||
|
retry_default curl -f -s localhost:19000/stats -o /dev/null
|
||
|
}
|
||
|
|
||
|
@test "gateway-primary listener is up on :4431" {
|
||
|
retry_default nc -z localhost:4431
|
||
|
}
|