zedshaw.games/tests/admin_ui_tests.go
2025-09-13 15:08:19 -04:00

15 lines
293 B
Go

package tests
import (
"testing"
// "github.com/stretchr/testify/require"
// "MY/webapp/data"
// sq "github.com/Masterminds/squirrel"
)
func TestTableListing(t *testing.T) {
z, cancel := Setup(t, 2);
defer cancel();
z.GoTo("/admin/table", `[data-testid="live-index-page"]`)
}