iosWebViewFix/example/integration_test/service_worker/main.dart

14 lines
334 B
Dart
Raw Normal View History

2022-04-30 19:22:31 +00:00
import 'package:flutter/foundation.dart';
2022-04-28 21:23:38 +00:00
import 'package:flutter_test/flutter_test.dart';
import 'set_service_worker_client.dart';
import 'should_intercept_request.dart';
void main() {
2022-04-30 19:22:31 +00:00
final shouldSkip = kIsWeb;
2022-04-28 21:23:38 +00:00
group('Service Worker', () {
shouldInterceptRequest();
setServiceWorkerClient();
2022-04-30 19:22:31 +00:00
}, skip: shouldSkip);
2022-04-28 21:23:38 +00:00
}