We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec80d78 commit d943d58Copy full SHA for d943d58
packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart
@@ -29,8 +29,12 @@ void main() {
29
],
30
environment: {'DEVELOPER_DIR': '/Applications/Xcode.app/Contents/Developer'},
31
);
32
- process.stdout.transform(utf8.decoder).listen((data) {});
33
- process.stderr.transform(utf8.decoder).listen((data) {});
+ process.stdout.transform(utf8.decoder).listen((data) {
+ print("STDOUT:\n$data");
34
+ });
35
+ process.stderr.transform(utf8.decoder).listen((data) {
36
+ print("STDERR:\n$data");
37
38
print("The process started...");
39
final exitCode = await process.exitCode;
40
print("The xcrun call returned with exit code: $exitCode");
0 commit comments