Skip to content

Commit 0f8d4de

Browse files
author
bas
committed
Fix cli tests
1 parent 730a25f commit 0f8d4de

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tools/cluster/tests/wasp-cli_test.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ func TestWaspAuth(t *testing.T) {
101101
}
102102

103103
func TestZeroGasFee(t *testing.T) {
104+
if testing.Short() {
105+
t.Skip("Skipping cluster tests in short mode")
106+
}
107+
104108
w := newWaspCLITest(t)
105109
const chainName = "chain1"
106110
committee, quorum := w.ArgCommitteeConfig(0)
@@ -253,6 +257,10 @@ func TestWaspCLISendFunds(t *testing.T) {
253257
}
254258

255259
func TestWaspCLIDeposit(t *testing.T) {
260+
if testing.Short() {
261+
t.Skip("Skipping cluster tests in short mode")
262+
}
263+
256264
w := newWaspCLITest(t)
257265

258266
committee, quorum := w.ArgCommitteeConfig(0)
@@ -396,6 +404,10 @@ func findRequestIDInOutput(out []string) string {
396404
}
397405

398406
func TestWaspCLIBlockLog(t *testing.T) {
407+
if testing.Short() {
408+
t.Skip("Skipping cluster tests in short mode")
409+
}
410+
399411
w := newWaspCLITest(t)
400412

401413
w.MustRun("wallet", "request-funds")

0 commit comments

Comments
 (0)