File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
packages/flutter_test_runners/example_deep_links/test_driver Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 1+ import 'dart:io' ;
2+
13import 'package:flutter_driver/flutter_driver.dart' ;
24import 'package:flutter_test_runners/flutter_test_runners.dart' ;
35import '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,
You can’t perform that action at this time.
0 commit comments