iosWebViewFix/example/integration_test/in_app_localhost_server/main.dart

21 lines
459 B
Dart
Raw Normal View History

2022-04-28 21:23:38 +00:00
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
import 'package:flutter_test/flutter_test.dart';
import 'load_asset_file.dart';
void main() {
group('InAppLocalhostServer', () {
final InAppLocalhostServer localhostServer = InAppLocalhostServer();
setUpAll(() async {
await localhostServer.start();
});
loadAssetFile(localhostServer);
tearDownAll(() async {
await localhostServer.close();
});
});
}