(t *testing.T)
| 15 | ) |
| 16 | |
| 17 | func Test_CORS_Defaults(t *testing.T) { |
| 18 | t.Parallel() |
| 19 | app := fiber.New() |
| 20 | app.Use(New()) |
| 21 | |
| 22 | testDefaultOrEmptyConfig(t, app) |
| 23 | } |
| 24 | |
| 25 | func Test_CORS_Empty_Config(t *testing.T) { |
| 26 | t.Parallel() |
nothing calls this directly
no test coverage detected