Files
vctp2/e2e/home_test.go.txt
Nathan Coad d1e13adf90
Some checks are pending
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
CI / Publish Docker (push) Blocked by required conditions
continuous-integration/drone/push Build is passing
some vm properties are populated
2024-09-12 17:24:38 +10:00

17 lines
285 B
Plaintext

//go:build e2e
package e2e_test
import (
"github.com/stretchr/testify/require"
"testing"
)
func TestHome(t *testing.T) {
beforeEach(t)
_, err := page.Goto(getFullPath(""))
require.NoError(t, err)
require.NoError(t, expect.Locator(page.GetByText("Welcome!")).ToBeVisible())
}