import 'package:test/test.dart';
main() {
test('slow', () async {
print('starting...');
await Future<void>.delayed(const Duration(seconds: 5));
}, timeout: const Timeout.factor(10));
}
When I try to run this code, it fails with this error:

However, if I try to Debug it (both runs use the CodeLens on the main function), it just hangs with no error:

When I try to run this code, it fails with this error:
However, if I try to Debug it (both runs use the CodeLens on the
mainfunction), it just hangs with no error: