e2e: longer test harness timeouts (#6728)

This commit is contained in:
Sam Kleinman
2021-07-20 15:57:48 -04:00
committed by GitHub
parent 2abfe20114
commit 7638235d33
6 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -30,5 +30,5 @@ func WaitUntil(testnet *e2e.Testnet, height int64) error {
// waitingTime estimates how long it should take for a node to reach the height.
// More nodes in a network implies we may expect a slower network and may have to wait longer.
func waitingTime(nodes int) time.Duration {
return time.Minute + (time.Duration(nodes) * (15 * time.Second))
return time.Minute + (time.Duration(nodes) * (30 * time.Second))
}