File tree Expand file tree Collapse file tree 1 file changed +15
-14
lines changed
packages/flutter_test_runners/example_deep_links/test_driver Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -19,20 +19,21 @@ void main() {
1919 print (Process .runSync ('env' , []).stdout);
2020
2121 print ("Running the command..." );
22- final process = await Process .start (
23- "xcrun" ,
24- [
25- "simctl" ,
26- "get_app_container" ,
27- "booted" ,
28- "com.flutterbountyhunters.deeplinks.example" ,
29- ],
30- environment: {
31- 'FLUTTER_TEST' : 'false' ,
32- },
33- runInShell: true ,
34- includeParentEnvironment: false ,
35- );
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+ // );
3637 process.stdout.transform (utf8.decoder).listen ((data) {
3738 print ("STDOUT:\n $data " );
3839 });
You can’t perform that action at this time.
0 commit comments