Skip to content

Commit d47994a

Browse files
Working on iOS GitHub CI
1 parent 4f120bd commit d47994a

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)