kratos/internal/testhelpers/httptest.go

17 lines
282 B
Go

// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package testhelpers
import (
"net/http"
"net/http/httptest"
"testing"
)
func NewHTTPTestServer(t *testing.T, h http.Handler) *httptest.Server {
ts := httptest.NewServer(h)
t.Cleanup(ts.Close)
return ts
}