Skip to content

Commit 51df910

Browse files
Working on iOS GitHub CI
1 parent 5d7fc9f commit 51df910

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,14 @@ void main() {
4949

5050
test("Send terminate command to simulator", () async {
5151
print("Sending xcrun simctl terminate command...");
52+
// final process = await Process.start(
53+
// "sh",
54+
// ["-c", "xcrun", "simctl", "terminate", "booted", "\"$appBundleId\""],
55+
// );
5256
final process = await Process.start(
53-
"sh",
54-
["-c", "xcrun simctl terminate booted \"$appBundleId\""],
57+
"xcrun",
58+
["simctl", "terminate", "booted", "\"$appBundleId\""],
59+
runInShell: true,
5560
);
5661
print("terminate command process was started");
5762

0 commit comments

Comments
 (0)