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
+
1
3
import 'package:flutter_driver/flutter_driver.dart' ;
2
4
import 'package:flutter_test_runners/flutter_test_runners.dart' ;
3
5
import 'package:test/test.dart' ;
@@ -9,6 +11,17 @@ void main() {
9
11
// xcrun simctl openurl booted https://deeplinks.flutterbountyhunters.com
10
12
11
13
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
+
12
25
testDeepLinkIosAppLaunch (
13
26
"home screen" ,
14
27
appBundleId: appBundleId,
You can’t perform that action at this time.
0 commit comments