(t *testing.T)
| 18 | ) |
| 19 | |
| 20 | func dbArg(t *testing.T) string { |
| 21 | dbURL, err := dbtestutil.Open(t) |
| 22 | require.NoError(t, err) |
| 23 | return "--postgres-url=" + dbURL |
| 24 | } |
| 25 | |
| 26 | // TestServer runs the enterprise server command |
| 27 | // and waits for /healthz to return "OK". |
no test coverage detected