dap: increase timeout for receiving configuration done in adapter test

Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
This commit is contained in:
Jonathan A. Sternberg 2025-07-03 09:12:34 -05:00
parent a007368729
commit f03ed8cc9f
No known key found for this signature in database
GPG Key ID: 6603D4B96394F6B1
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func TestLaunch(t *testing.T) {
select {
case <-configurationDone:
case <-time.After(time.Second):
case <-time.After(10 * time.Second):
assert.Fail(t, "did not receive configurationDone response")
}
return nil