49 lines
2.3 KiB
Dart
49 lines
2.3 KiB
Dart
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'process_global_config/main.dart' as process_global_config_tests;
|
|
import 'in_app_webview/main.dart' as in_app_webview_tests;
|
|
import 'find_interaction_controller/main.dart'
|
|
as find_interaction_controller_tests;
|
|
import 'service_worker_controller/main.dart' as service_worker_controller_tests;
|
|
import 'proxy_controller/main.dart' as proxy_controller_tests;
|
|
import 'headless_in_app_webview/main.dart' as headless_in_app_webview_tests;
|
|
import 'cookie_manager/main.dart' as cookie_manager_tests;
|
|
import 'in_app_browser/main.dart' as in_app_browser_tests;
|
|
import 'chrome_safari_browser/main.dart' as chrome_safari_browser_tests;
|
|
import 'in_app_localhost_server/main.dart' as in_app_localhost_server_tests;
|
|
import 'tracing_controller/main.dart' as tracing_controller_tests;
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
PlatformInAppWebViewController.debugLoggingSettings.usePrint = true;
|
|
PlatformInAppWebViewController.debugLoggingSettings.maxLogMessageLength =
|
|
7000;
|
|
PlatformInAppBrowser.debugLoggingSettings.usePrint = true;
|
|
PlatformInAppBrowser.debugLoggingSettings.maxLogMessageLength = 7000;
|
|
PlatformChromeSafariBrowser.debugLoggingSettings.usePrint = true;
|
|
PlatformChromeSafariBrowser.debugLoggingSettings.maxLogMessageLength = 7000;
|
|
PlatformWebAuthenticationSession.debugLoggingSettings.usePrint = true;
|
|
PlatformWebAuthenticationSession.debugLoggingSettings.maxLogMessageLength =
|
|
7000;
|
|
PlatformPullToRefreshController.debugLoggingSettings.usePrint = true;
|
|
PlatformPullToRefreshController.debugLoggingSettings.maxLogMessageLength =
|
|
7000;
|
|
PlatformFindInteractionController.debugLoggingSettings.usePrint = true;
|
|
PlatformFindInteractionController.debugLoggingSettings.maxLogMessageLength =
|
|
7000;
|
|
|
|
process_global_config_tests.main();
|
|
in_app_webview_tests.main();
|
|
find_interaction_controller_tests.main();
|
|
service_worker_controller_tests.main();
|
|
proxy_controller_tests.main();
|
|
tracing_controller_tests.main();
|
|
headless_in_app_webview_tests.main();
|
|
cookie_manager_tests.main();
|
|
in_app_browser_tests.main();
|
|
chrome_safari_browser_tests.main();
|
|
in_app_localhost_server_tests.main();
|
|
}
|