b8dd35ceaf
Testplanet does not have a multinode instance, hence, makes it difficult to run ui tests for the multinode dashboard. Instead of using storj-sim for multinode ui tests, it's better to use the same approach (testplanet) fir all UI tests. This changes adds a multinode instance to testplanet. Change-Id: I58aa8c4597e789275f9e7ea7059703c742903492
20 lines
448 B
Go
20 lines
448 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information
|
|
|
|
package testplanet_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"storj.io/common/testcontext"
|
|
"storj.io/storj/private/testplanet"
|
|
)
|
|
|
|
func TestRun(t *testing.T) {
|
|
testplanet.Run(t, testplanet.Config{
|
|
SatelliteCount: 1, StorageNodeCount: 1, UplinkCount: 1, MultinodeCount: 1,
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
t.Log("running test")
|
|
})
|
|
}
|