(t *testing.T)
| 12776 | } |
| 12777 | |
| 12778 | func TestChatAdvisorConfig_GetDefault(t *testing.T) { |
| 12779 | t.Parallel() |
| 12780 | |
| 12781 | ctx := testutil.Context(t, testutil.WaitLong) |
| 12782 | adminClient := newChatClient(t) |
| 12783 | coderdtest.CreateFirstUser(t, adminClient.Client) |
| 12784 | |
| 12785 | resp, err := adminClient.GetChatAdvisorConfig(ctx) |
| 12786 | require.NoError(t, err) |
| 12787 | require.Equal(t, codersdk.AdvisorConfig{}, resp) |
| 12788 | } |
| 12789 | |
| 12790 | func TestChatAdvisorConfig_Update(t *testing.T) { |
| 12791 | t.Parallel() |
nothing calls this directly
no test coverage detected