Skip to content

Commit ca00cff

Browse files
Working on iOS GitHub CI
1 parent d47994a commit ca00cff

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,17 @@ void main() {
1919
print(Process.runSync('env', []).stdout);
2020

2121
print("Running the command...");
22-
final process = await Process.start("pwd", []);
23-
// final process = await Process.start(
24-
// "xcrun",
25-
// [
26-
// "simctl",
27-
// "get_app_container",
28-
// "booted",
29-
// "com.flutterbountyhunters.deeplinks.example",
30-
// ],
31-
// environment: {
32-
// 'FLUTTER_TEST': 'false',
33-
// },
34-
// runInShell: true,
35-
// includeParentEnvironment: false,
36-
// );
22+
final process = await Process.start(
23+
"xcrun",
24+
[
25+
"simctl",
26+
"list",
27+
"--verbose",
28+
// "get_app_container",
29+
// "booted",
30+
// "com.flutterbountyhunters.deeplinks.example",
31+
],
32+
);
3733
process.stdout.transform(utf8.decoder).listen((data) {
3834
print("STDOUT:\n$data");
3935
});

0 commit comments

Comments
 (0)