(t *testing.T)
| 651 | } |
| 652 | |
| 653 | func aibridgeOpts(t *testing.T) *coderdenttest.Options { |
| 654 | t.Helper() |
| 655 | dv := coderdtest.DeploymentValues(t) |
| 656 | dv.AI.BridgeConfig.Enabled = serpent.Bool(true) |
| 657 | return &coderdenttest.Options{ |
| 658 | Options: &coderdtest.Options{ |
| 659 | DeploymentValues: dv, |
| 660 | }, |
| 661 | LicenseOptions: &coderdenttest.LicenseOptions{ |
| 662 | Features: license.Features{ |
| 663 | codersdk.FeatureAIBridge: 1, |
| 664 | }, |
| 665 | }, |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | func TestAIBridgeListSessions(t *testing.T) { |
| 670 | t.Parallel() |
no test coverage detected