diff --git a/lib/web_ui/dev/integration_tests_manager.dart b/lib/web_ui/dev/integration_tests_manager.dart index 54056e49e3165..c75a8b9689a75 100644 --- a/lib/web_ui/dev/integration_tests_manager.dart +++ b/lib/web_ui/dev/integration_tests_manager.dart @@ -249,10 +249,9 @@ class IntegrationTestsManager { buildModes = {mode}; } } else { - // TODO(nurhan): Enable `release` when recipe is sharded. buildModes = _browser == 'chrome' - ? {'debug', 'profile'} - : {'profile'}; + ? {'debug', 'profile', 'release'} + : {'profile', 'release'}; } return buildModes; } @@ -632,28 +631,9 @@ const Map> blockedTestsListsMapForModes = 'treeshaking_integration.dart', 'text_editing_integration.dart', 'url_strategy_integration.dart', - - // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583 - // The following tests are blocked to reduce the load on the build bot. - // The bot currently frequently exceeds the timeout limit. - 'image_loading_integration.dart', - 'platform_messages_integration.dart', - 'profile_diagnostics_integration.dart', - 'scroll_wheel_integration.dart', ], 'profile': [], - 'release': [ - // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583 - // The following tests are blocked to reduce the load on the build bot. - // The bot currently frequently exceeds the timeout limit. - 'image_loading_integration.dart', - 'platform_messages_integration.dart', - 'profile_diagnostics_integration.dart', - 'scroll_wheel_integration.dart', - 'text_editing_integration.dart', - 'treeshaking_integration.dart', - 'url_strategy_integration.dart', - ], + 'release': [], }; /// Tests blocked for one of the rendering backends. @@ -676,11 +656,5 @@ const Map> blockedTestsListsMapForRenderBackends = // This test failed on canvaskit on all three build modes. 'canvaskit': [ 'image_loading_integration.dart', - 'platform_messages_integration.dart', - 'profile_diagnostics_integration.dart', - 'scroll_wheel_integration.dart', - 'text_editing_integration.dart', - 'treeshaking_integration.dart', - 'url_strategy_integration.dart', ], };