some vm properties are populated
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

This commit is contained in:
2024-09-12 17:24:38 +10:00
parent c46117d084
commit d1e13adf90
10 changed files with 1005 additions and 56 deletions

16
e2e/home_test.go.txt Normal file
View File

@@ -0,0 +1,16 @@
//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())
}