Skip to content

Commit 27238f4

Browse files
committed
++
1 parent 61382fc commit 27238f4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

dev/bots/suite_runners/run_flutter_driver_android_tests.dart

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,20 @@ import '../utils.dart';
2323
Future<void> runFlutterDriverAndroidTests() async {
2424
print('Running Flutter Driver Android tests...');
2525

26+
// Print out the results of `adb devices`, for uh, science:
27+
print('Listing devices...');
28+
final io.ProcessResult devices = await _adb(
29+
<String>[
30+
'devices',
31+
],
32+
);
33+
print(devices.stdout);
34+
print(devices.stderr);
35+
2636
// We need to configure the emulator to disable confirmations before the
2737
// application starts. Some of these configuration options won't work once
2838
// the application is running.
39+
print('Configuring device...');
2940
await _configureForScreenshotTesting();
3041

3142
// TODO(matanlurey): Should we be using another instrumentation method?

0 commit comments

Comments
 (0)