Skip to content

Commit d8b13c0

Browse files
Working on iOS GitHub CI
1 parent 25d83d1 commit d8b13c0

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,21 @@ void main() {
5151
print("Sending xcrun simctl terminate command...");
5252
// final process = await Process.start(
5353
// "sh",
54-
// ["-c", "xcrun", "simctl", "terminate", "booted", "\"$appBundleId\""],
54+
// ["-c", "xcrun simctl terminate booted '$appBundleId'"],
5555
// );
56+
57+
// CI Timeout
58+
// final process = await Process.start(
59+
// "xcrun",
60+
// ["simctl", "terminate", "booted", "'$appBundleId'"],
61+
// runInShell: true,
62+
// );
63+
5664
final process = await Process.start(
5765
"xcrun",
5866
["simctl", "terminate", "booted", "'$appBundleId'"],
59-
runInShell: true,
6067
);
68+
6169
print("terminate command process was started");
6270

6371
process.stdin.close();

0 commit comments

Comments
 (0)