iosWebViewFix/example/integration_test/service_worker_controller/main.dart

15 lines
346 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-05-02 10:52:10 +00:00
group('Service Worker Controller', () {
2022-04-28 21:23:38 +00:00
shouldInterceptRequest();
setServiceWorkerClient();
2022-04-30 19:22:31 +00:00
}, skip: shouldSkip);
2022-10-11 14:19:36 +00:00
}