21 lines
480 B
Go
21 lines
480 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestRunProxyServerCountMiddleware(t *testing.T) {
|
|
// r := require.New(t)
|
|
// ctx, done := context.WithCancel(
|
|
// context.Background(),
|
|
// )
|
|
// defer done()
|
|
// r.NoError(runProxyServer(ctx, logr.Discard(), q, waitFunc, routingTable, timeouts, port))
|
|
|
|
// see https://github.com/kedacore/http-add-on/issues/245
|
|
}
|
|
|
|
func TestRunAdminServerDeploymentsEndpoint(t *testing.T) {
|
|
// see https://github.com/kedacore/http-add-on/issues/245
|
|
}
|