From 1b1dc2843ef942aab06c9afea214ae81d786c5b0 Mon Sep 17 00:00:00 2001 From: Pimyn Girgis Date: Mon, 13 Oct 2025 10:06:26 +0000 Subject: dashboard/app: set aetest startup timeout Set aetest startup timeout to 120 seconds to prevent flaky tests from failing due to timeouts. This is especially helpful on slower machines or when the system is under heavy load. --- dashboard/app/util_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'dashboard/app') diff --git a/dashboard/app/util_test.go b/dashboard/app/util_test.go index f403d8f2b..199573cf0 100644 --- a/dashboard/app/util_test.go +++ b/dashboard/app/util_test.go @@ -63,6 +63,7 @@ func NewCtx(t *testing.T) *Ctx { } t.Parallel() inst, err := aetest.NewInstance(&aetest.Options{ + StartupTimeout: 120 * time.Second, // Without this option datastore queries return data with slight delay, // which fails reporting tests. StronglyConsistentDatastore: true, -- cgit mrf-deployment