(t *testing.T, opts setupInMemoryRegistryOpts)
| 2593 | } |
| 2594 | |
| 2595 | func setupInMemoryRegistry(t *testing.T, opts setupInMemoryRegistryOpts) string { |
| 2596 | t.Helper() |
| 2597 | regSrv := registrytest.New(t, mwtest.BasicAuthMW(opts.Username, opts.Password)) |
| 2598 | return regSrv |
| 2599 | } |
| 2600 | |
| 2601 | // TestMain runs before all tests to build the envbuilder image. |
| 2602 | func TestMain(m *testing.M) { |
no test coverage detected