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 d943d58 commit 25e6cc2Copy full SHA for 25e6cc2
packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart
@@ -27,7 +27,9 @@ void main() {
27
"booted",
28
"com.flutterbountyhunters.deeplinks.example",
29
],
30
- environment: {'DEVELOPER_DIR': '/Applications/Xcode.app/Contents/Developer'},
+ environment: {
31
+ 'FLUTTER_TEST': 'false',
32
+ },
33
);
34
process.stdout.transform(utf8.decoder).listen((data) {
35
print("STDOUT:\n$data");
@@ -36,6 +38,9 @@ void main() {
36
38
print("STDERR:\n$data");
37
39
});
40
print("The process started...");
41
+ print("Closing stdin");
42
+ process.stdin.close();
43
+ print("Waiting for exist code...");
44
final exitCode = await process.exitCode;
45
print("The xcrun call returned with exit code: $exitCode");
46
0 commit comments