Skip to content

Commit 5ca2c76

Browse files
Working on iOS GitHub CI
1 parent d8b13c0 commit 5ca2c76

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,22 @@ void main() {
4949

5050
test("Send terminate command to simulator", () async {
5151
print("Sending xcrun simctl terminate command...");
52+
// CI Timeout
5253
// final process = await Process.start(
53-
// "sh",
54-
// ["-c", "xcrun simctl terminate booted '$appBundleId'"],
54+
// "xcrun",
55+
// ["simctl", "terminate", "booted", "'$appBundleId'"],
56+
// runInShell: true,
5557
// );
5658

5759
// CI Timeout
5860
// final process = await Process.start(
5961
// "xcrun",
6062
// ["simctl", "terminate", "booted", "'$appBundleId'"],
61-
// runInShell: true,
6263
// );
6364

6465
final process = await Process.start(
65-
"xcrun",
66-
["simctl", "terminate", "booted", "'$appBundleId'"],
66+
"sh",
67+
["-c", "xcrun simctl terminate booted '$appBundleId'"],
6768
);
6869

6970
print("terminate command process was started");

0 commit comments

Comments
 (0)