Skip to content

Commit 5888d4f

Browse files
Working on iOS GitHub CI
1 parent 31e244f commit 5888d4f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import 'dart:io';
2+
13
import 'package:flutter_driver/flutter_driver.dart';
24
import 'package:flutter_test_runners/flutter_test_runners.dart';
35
import 'package:test/test.dart';
@@ -9,6 +11,17 @@ void main() {
911
// xcrun simctl openurl booted https://deeplinks.flutterbountyhunters.com
1012

1113
group("Deep link launches app > iOS >", () {
14+
test("xcrun sanity check", () async {
15+
print("Running xcrun Process sanity check...");
16+
await Process.run("xcrun", [
17+
"simctl",
18+
"get_app_container",
19+
"booted",
20+
"com.flutterbountyhunters.deeplinks.example",
21+
]);
22+
print("The xcrun call returned without issue");
23+
});
24+
1225
testDeepLinkIosAppLaunch(
1326
"home screen",
1427
appBundleId: appBundleId,

0 commit comments

Comments
 (0)