iosWebViewFix/example/integration_test/in_app_webview/handles_url_scheme.dart

16 lines
426 B
Dart
Raw Normal View History

part of 'main.dart';
2022-04-28 21:23:38 +00:00
void handlesURLScheme() {
2022-04-29 11:39:28 +00:00
final shouldSkip = kIsWeb
? true
: ![
TargetPlatform.iOS,
TargetPlatform.macOS,
].contains(defaultTargetPlatform);
2022-04-28 21:23:38 +00:00
skippableTest('handlesURLScheme', () async {
2022-04-28 21:23:38 +00:00
expect(await InAppWebViewController.handlesURLScheme("http"), true);
expect(await InAppWebViewController.handlesURLScheme("https"), true);
}, skip: shouldSkip);
}