2021-01-28 16:10:15 +00:00
|
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
2023-11-14 17:39:25 +00:00
|
|
|
import 'process_global_config/main.dart' as process_global_config_tests;
|
2022-04-27 23:10:20 +00:00
|
|
|
import 'in_app_webview/main.dart' as in_app_webview_tests;
|
2022-10-11 14:19:36 +00:00
|
|
|
import 'find_interaction_controller/main.dart'
|
|
|
|
as find_interaction_controller_tests;
|
2022-05-02 10:52:10 +00:00
|
|
|
import 'service_worker_controller/main.dart' as service_worker_controller_tests;
|
|
|
|
import 'proxy_controller/main.dart' as proxy_controller_tests;
|
2022-04-28 21:23:38 +00:00
|
|
|
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;
|
2022-10-31 01:09:00 +00:00
|
|
|
import 'tracing_controller/main.dart' as tracing_controller_tests;
|
2021-02-22 11:16:23 +00:00
|
|
|
|
2021-02-22 22:38:30 +00:00
|
|
|
void main() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
2022-04-27 23:10:20 +00:00
|
|
|
|
2023-11-18 00:17:45 +00:00
|
|
|
PlatformInAppWebViewController.debugLoggingSettings.usePrint = true;
|
2023-11-23 15:06:50 +00:00
|
|
|
PlatformInAppWebViewController.debugLoggingSettings.maxLogMessageLength =
|
|
|
|
7000;
|
2023-11-23 15:01:14 +00:00
|
|
|
PlatformInAppBrowser.debugLoggingSettings.usePrint = true;
|
|
|
|
PlatformInAppBrowser.debugLoggingSettings.maxLogMessageLength = 7000;
|
2023-11-17 22:28:11 +00:00
|
|
|
PlatformChromeSafariBrowser.debugLoggingSettings.usePrint = true;
|
|
|
|
PlatformChromeSafariBrowser.debugLoggingSettings.maxLogMessageLength = 7000;
|
2023-11-23 15:01:14 +00:00
|
|
|
PlatformWebAuthenticationSession.debugLoggingSettings.usePrint = true;
|
2023-11-23 15:06:50 +00:00
|
|
|
PlatformWebAuthenticationSession.debugLoggingSettings.maxLogMessageLength =
|
|
|
|
7000;
|
2023-11-23 15:01:14 +00:00
|
|
|
PlatformPullToRefreshController.debugLoggingSettings.usePrint = true;
|
2023-11-23 15:06:50 +00:00
|
|
|
PlatformPullToRefreshController.debugLoggingSettings.maxLogMessageLength =
|
|
|
|
7000;
|
2023-11-23 15:01:14 +00:00
|
|
|
PlatformFindInteractionController.debugLoggingSettings.usePrint = true;
|
2023-11-23 15:06:50 +00:00
|
|
|
PlatformFindInteractionController.debugLoggingSettings.maxLogMessageLength =
|
|
|
|
7000;
|
2022-10-05 17:48:34 +00:00
|
|
|
|
2023-11-14 17:39:25 +00:00
|
|
|
process_global_config_tests.main();
|
2022-04-27 23:10:20 +00:00
|
|
|
in_app_webview_tests.main();
|
2022-10-08 12:19:35 +00:00
|
|
|
find_interaction_controller_tests.main();
|
2022-05-02 10:52:10 +00:00
|
|
|
service_worker_controller_tests.main();
|
|
|
|
proxy_controller_tests.main();
|
2022-10-31 01:09:00 +00:00
|
|
|
tracing_controller_tests.main();
|
2022-04-28 21:23:38 +00:00
|
|
|
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();
|
2021-01-28 16:10:15 +00:00
|
|
|
}
|