authelia/internal/suites/verify_url_is.go

14 lines
278 B
Go
Raw Normal View History

package suites
import (
"testing"
"github.com/go-rod/rod"
2019-12-08 12:16:13 +00:00
"github.com/stretchr/testify/require"
)
func (rs *RodSession) verifyURLIs(t *testing.T, page *rod.Page, url string) {
currentURL := page.MustInfo().URL
require.Equal(t, url, currentURL, "they should be equal")
}