16 lines
426 B
Dart
Raw Normal View History

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