File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -474,9 +474,10 @@ class ChromeProxyService implements VmServiceInterface {
474
474
final isolate = inspector.isolate;
475
475
476
476
final debugger = await debuggerFuture;
477
- for (final breakpoint in isolate.breakpoints? .toList () ?? < Breakpoint > []) {
478
- await debugger.removeBreakpoint (breakpoint.id! );
479
- }
477
+ await Future .wait ([
478
+ for (final breakpoint in isolate.breakpoints ?? < Breakpoint > [])
479
+ debugger.removeBreakpoint (breakpoint.id! ),
480
+ ]);
480
481
}
481
482
482
483
@override
Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ void main() {
418
418
// the old string still as the closure has not been reevaluated.
419
419
await callEvaluateAndExpectLog (oldCapturedString);
420
420
});
421
- }, timeout: Timeout .factor (2 ));
421
+ }, timeout: Timeout .factor (3 ));
422
422
423
423
group ('when pause_isolates_on_start is false' , () {
424
424
late VmService client;
You can’t perform that action at this time.
0 commit comments