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