(t *testing.T)
| 644 | } |
| 645 | |
| 646 | func TestConnectOptions_Defaults(t *testing.T) { |
| 647 | opts := defaultConnectOptions("test-token", "https://api.thundercompute.com:8443") |
| 648 | |
| 649 | assert.NotNil(t, opts.client) |
| 650 | assert.False(t, opts.skipTTYCheck) |
| 651 | assert.False(t, opts.skipTUI) |
| 652 | assert.NotNil(t, opts.sshConnector) |
| 653 | assert.NotNil(t, opts.sessionRunner) |
| 654 | assert.NotNil(t, opts.configLoader) |
| 655 | } |
| 656 | |
| 657 | func TestConcurrentMockAPIClient(t *testing.T) { |
| 658 | // Test that mock API client is thread-safe |
nothing calls this directly
no test coverage detected