Skip to content

Commit d943d58

Browse files
Working on iOS GitHub CI
1 parent ec80d78 commit d943d58

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ void main() {
2929
],
3030
environment: {'DEVELOPER_DIR': '/Applications/Xcode.app/Contents/Developer'},
3131
);
32-
process.stdout.transform(utf8.decoder).listen((data) {});
33-
process.stderr.transform(utf8.decoder).listen((data) {});
32+
process.stdout.transform(utf8.decoder).listen((data) {
33+
print("STDOUT:\n$data");
34+
});
35+
process.stderr.transform(utf8.decoder).listen((data) {
36+
print("STDERR:\n$data");
37+
});
3438
print("The process started...");
3539
final exitCode = await process.exitCode;
3640
print("The xcrun call returned with exit code: $exitCode");

0 commit comments

Comments
 (0)