| Index: lib/src/runner/debugger.dart
 | 
| diff --git a/lib/src/runner/debugger.dart b/lib/src/runner/debugger.dart
 | 
| index 7c6e1b8a16ebd8707df1e9f42434d462e1c321bc..6e850c636d884a01b0e5d55b4ae2619812bd7426 100644
 | 
| --- a/lib/src/runner/debugger.dart
 | 
| +++ b/lib/src/runner/debugger.dart
 | 
| @@ -6,7 +6,6 @@ import 'dart:async';
 | 
|  
 | 
|  import 'package:async/async.dart';
 | 
|  
 | 
| -import '../backend/test_platform.dart';
 | 
|  import '../util/io.dart';
 | 
|  import '../utils.dart';
 | 
|  import 'configuration.dart';
 | 
| @@ -110,7 +109,7 @@ class _Debugger {
 | 
|    /// suite to run.
 | 
|    Future _pause() async {
 | 
|      if (_suite.platform == null) return;
 | 
| -    if (_suite.platform == TestPlatform.vm) return;
 | 
| +    if (!_suite.environment.supportsDebugging) return;
 | 
|  
 | 
|      try {
 | 
|        _reporter.pause();
 | 
| 
 |