52c950e429
Change-Id: I1e592ac755b582d4fa73e95fd999a35a27f8a116
20 lines
387 B
Go
20 lines
387 B
Go
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package uitest_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-rod/rod"
|
|
|
|
"storj.io/common/testcontext"
|
|
"storj.io/storj/testsuite/ui/uitest"
|
|
)
|
|
|
|
func TestEdge(t *testing.T) {
|
|
uitest.Edge(t, func(t *testing.T, ctx *testcontext.Context, planet *uitest.EdgePlanet, browser *rod.Browser) {
|
|
t.Log("working")
|
|
})
|
|
}
|