13 lines
196 B
Go
13 lines
196 B
Go
package health_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"fiskerinc.com/modules/health"
|
|
)
|
|
|
|
func TestHealthCheckServer(t *testing.T) {
|
|
server := health.HealthCheckServer{}
|
|
go server.Serve([]health.Config{})
|
|
}
|