Merge pull request #3293 from jsternberg/dap-adapter-test-flaky

dap: increase timeout for receiving configuration done in adapter test
This commit is contained in:
Jonathan A. Sternberg
2025-07-03 09:47:42 -05:00
committed by GitHub
+1 -1
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