authelia/internal/suites/verify_is_home.go

12 lines
196 B
Go
Raw Normal View History

package suites
import (
"context"
"fmt"
"testing"
)
func (wds *WebDriverSession) verifyIsHome(ctx context.Context, t *testing.T) {
wds.verifyURLIs(ctx, t, fmt.Sprintf("%s/", HomeBaseURL))
}