@@ -1579,26 +1579,19 @@ void runTests({
1579
1579
await service.resume (isolateId! );
1580
1580
});
1581
1581
1582
- test (
1583
- 'Into goes to the next Dart location' ,
1584
- () async {
1585
- await service.resume (isolateId! , step: 'Into' );
1586
- // Wait for the step to actually occur.
1587
- await stream.firstWhere (
1588
- (event) => event.kind == EventKind .kPauseInterrupted,
1589
- );
1590
- final stack = await service.getStack (isolateId! );
1591
- expect (stack, isNotNull);
1592
- final first = stack.frames! .first;
1593
- expect (first.kind, 'Regular' );
1594
- expect (first.code! .kind, 'Dart' );
1595
- expect (first.code! .name, 'printCount' );
1596
- },
1597
- skip:
1598
- moduleFormat == ModuleFormat .ddc && canaryFeatures
1599
- ? 'https://github.com/dart-lang/webdev/issues/2617'
1600
- : null ,
1601
- );
1582
+ test ('Into goes to the next Dart location' , () async {
1583
+ await service.resume (isolateId! , step: 'Into' );
1584
+ // Wait for the step to actually occur.
1585
+ await stream.firstWhere (
1586
+ (event) => event.kind == EventKind .kPauseInterrupted,
1587
+ );
1588
+ final stack = await service.getStack (isolateId! );
1589
+ expect (stack, isNotNull);
1590
+ final first = stack.frames! .first;
1591
+ expect (first.kind, 'Regular' );
1592
+ expect (first.code! .kind, 'Dart' );
1593
+ expect (first.code! .name, 'printCount' );
1594
+ });
1602
1595
1603
1596
test ('Over goes to the next Dart location' , () async {
1604
1597
await service.resume (isolateId! , step: 'Over' );
0 commit comments