(t *testing.T, options *Options)
| 85 | } |
| 86 | |
| 87 | func NewWithDatabase(t *testing.T, options *Options) (*codersdk.Client, database.Store, codersdk.CreateFirstUserResponse) { |
| 88 | client, _, api, user := NewWithAPI(t, options) |
| 89 | return client, api.Database, user |
| 90 | } |
| 91 | |
| 92 | func NewWithAPI(t *testing.T, options *Options) ( |
| 93 | *codersdk.Client, io.Closer, *coderd.API, codersdk.CreateFirstUserResponse, |