Files
at-container-registry/pkg/appview/jetstream/worker_test.go
T
2025-10-28 17:40:11 -05:00

14 lines
240 B
Go

package jetstream
import "testing"
func TestWorker_Struct(t *testing.T) {
// Simple struct test
worker := &Worker{}
if worker == nil {
t.Error("Expected non-nil worker")
}
}
// TODO: Add WebSocket connection tests with mock server