11 lines
244 B
Dart
11 lines
244 B
Dart
|
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();
|
||
|
});
|
||
|
}
|