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() {
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 });
You can’t perform that action at this time.
0 commit comments