23 lines
465 B
Go
23 lines
465 B
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
clitest "github.com/filecoin-project/lotus/cli/test"
|
|
)
|
|
|
|
// TestClient does a basic test to exercise the client CLI
|
|
// commands
|
|
func TestClient(t *testing.T) {
|
|
_ = os.Setenv("BELLMAN_NO_GPU", "1")
|
|
clitest.QuietMiningLogs()
|
|
|
|
blocktime := 5 * time.Millisecond
|
|
ctx := context.Background()
|
|
clientNode, _ := clitest.StartOneNodeOneMiner(ctx, t, blocktime)
|
|
clitest.RunClientTest(t, Commands, clientNode)
|
|
}
|