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 25e6cc2 commit 58a6fefCopy full SHA for 58a6fef
packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart
@@ -30,6 +30,8 @@ void main() {
30
environment: {
31
'FLUTTER_TEST': 'false',
32
},
33
+ runInShell: true,
34
+ mode: ProcessStartMode.detachedWithStdio,
35
);
36
process.stdout.transform(utf8.decoder).listen((data) {
37
print("STDOUT:\n$data");
@@ -40,7 +42,7 @@ void main() {
40
42
print("The process started...");
41
43
print("Closing stdin");
44
process.stdin.close();
- print("Waiting for exist code...");
45
+ print("Waiting for exit code...");
46
final exitCode = await process.exitCode;
47
print("The xcrun call returned with exit code: $exitCode");
48
});
0 commit comments