Skip to content

Commit 25e6cc2

Browse files
Working on iOS GitHub CI
1 parent d943d58 commit 25e6cc2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ void main() {
2727
"booted",
2828
"com.flutterbountyhunters.deeplinks.example",
2929
],
30-
environment: {'DEVELOPER_DIR': '/Applications/Xcode.app/Contents/Developer'},
30+
environment: {
31+
'FLUTTER_TEST': 'false',
32+
},
3133
);
3234
process.stdout.transform(utf8.decoder).listen((data) {
3335
print("STDOUT:\n$data");
@@ -36,6 +38,9 @@ void main() {
3638
print("STDERR:\n$data");
3739
});
3840
print("The process started...");
41+
print("Closing stdin");
42+
process.stdin.close();
43+
print("Waiting for exist code...");
3944
final exitCode = await process.exitCode;
4045
print("The xcrun call returned with exit code: $exitCode");
4146
});

0 commit comments

Comments
 (0)