iosWebViewFix/example/integration_test/service_worker/main.dart

11 lines
244 B
Dart
Raw Normal View History

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() {
group('Service Worker', () {
shouldInterceptRequest();
setServiceWorkerClient();
});
}