itest: move longest test to beginning
To make sure the test that takes the longest overall time is always started first, independent of the number of test tranches we run, we move it to the beginning of the list. Because that test involves a lot of waiting, it allows us to play around with the number of tranches more efficiently.
This commit is contained in:
parent
e6c47294fb
commit
a606f462bc
@ -3,6 +3,10 @@
|
||||
package itest
|
||||
|
||||
var allTestCases = []*testCase{
|
||||
{
|
||||
name: "test multi-hop htlc",
|
||||
test: testMultiHopHtlcClaims,
|
||||
},
|
||||
{
|
||||
name: "sweep coins",
|
||||
test: testSweepAllCoins,
|
||||
@ -144,10 +148,6 @@ var allTestCases = []*testCase{
|
||||
name: "async bidirectional payments",
|
||||
test: testBidirectionalAsyncPayments,
|
||||
},
|
||||
{
|
||||
name: "test multi-hop htlc",
|
||||
test: testMultiHopHtlcClaims,
|
||||
},
|
||||
{
|
||||
name: "switch circuit persistence",
|
||||
test: testSwitchCircuitPersistence,
|
||||
|
Loading…
Reference in New Issue
Block a user