File tree Expand file tree Collapse file tree 1 file changed +11
-15
lines changed
packages/flutter_test_runners/example_deep_links/test_driver Expand file tree Collapse file tree 1 file changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -19,21 +19,17 @@ void main() {
19
19
print (Process .runSync ('env' , []).stdout);
20
20
21
21
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
+ );
37
33
process.stdout.transform (utf8.decoder).listen ((data) {
38
34
print ("STDOUT:\n $data " );
39
35
});
You can’t perform that action at this time.
0 commit comments