(t *testing.T)
| 709 | } |
| 710 | |
| 711 | func TestManualSignInCorrectCredentials(t *testing.T) { |
| 712 | statusCode := ManualSignInWithCredentials(t, "admin", "adminPass") |
| 713 | assert.Equal(t, http.StatusFound, statusCode) |
| 714 | } |
| 715 | |
| 716 | func TestSignInPageClearsExistingSessionCookie(t *testing.T) { |
| 717 | opts := baseTestOptions() |
nothing calls this directly
no test coverage detected