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")
|
||
|
})
|
||
|
}
|