1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

HISTORY.md: add entry for third party packages support on httptest

This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-10-22 18:11:48 +03:00
parent 7761069873
commit 3f544398b9
3 changed files with 7 additions and 2 deletions

View File

@@ -104,7 +104,8 @@ func DefaultConfiguration() *Configuration {
//
// httptest.New(t, app, httptest.URL(...), httptest.Debug(true), httptest.LogLevel("debug"), httptest.Strict(true))
//
// Example at: https://github.com/kataras/iris/tree/master/_examples/testing/httptest.
// Examples at: https://github.com/kataras/iris/tree/master/_examples/testing/httptest and
// https://github.com/kataras/iris/tree/master/_examples/testing/ginkgotest.
func New(t IrisTesty, app *iris.Application, setters ...OptionSetter) *httpexpect.Expect {
conf := DefaultConfiguration()
for _, setter := range setters {