8c8a3e217f
Move ui tests to testsuite/ and introduce a new go.mod. This prevents cyclic references when building edge binaries for testing. Change-Id: I613fdc21ef9eaffba2052f6ad973bfa18c7c86bd
21 lines
422 B
Go
21 lines
422 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/private/testplanet"
|
|
"storj.io/storj/testsuite/ui/uitest"
|
|
)
|
|
|
|
func TestRun(t *testing.T) {
|
|
uitest.Run(t, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet, browser *rod.Browser) {
|
|
t.Log("working")
|
|
})
|
|
}
|