Skip to content

Commit 1ea8462

Browse files
authored
[gardening] Temporarily skip failing test case (#2618)
"shared context Step Into goes to the next Dart location" in `test/chrome_proxy_service_ddc_library_bundle_test.dart` Issue: #2617
1 parent 5bf833d commit 1ea8462

File tree

1 file changed

+20
-13
lines changed

1 file changed

+20
-13
lines changed

dwds/test/common/chrome_proxy_service_common.dart

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1579,19 +1579,26 @@ void runTests({
15791579
await service.resume(isolateId!);
15801580
});
15811581

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-
});
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+
);
15951602

15961603
test('Over goes to the next Dart location', () async {
15971604
await service.resume(isolateId!, step: 'Over');

0 commit comments

Comments
 (0)