Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 2951317

Browse files
author
nturgut
authored
[web] sharding change is merged. re-enable tests (#22884)
* sharding change is merged. re-enable tests * fix file name for image loading. re-block auto
1 parent a90d587 commit 2951317

File tree

1 file changed

+3
-29
lines changed

1 file changed

+3
-29
lines changed

lib/web_ui/dev/integration_tests_manager.dart

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,9 @@ class IntegrationTestsManager {
249249
buildModes = <String>{mode};
250250
}
251251
} else {
252-
// TODO(nurhan): Enable `release` when recipe is sharded.
253252
buildModes = _browser == 'chrome'
254-
? {'debug', 'profile'}
255-
: {'profile'};
253+
? {'debug', 'profile', 'release'}
254+
: {'profile', 'release'};
256255
}
257256
return buildModes;
258257
}
@@ -632,28 +631,9 @@ const Map<String, List<String>> blockedTestsListsMapForModes =
632631
'treeshaking_integration.dart',
633632
'text_editing_integration.dart',
634633
'url_strategy_integration.dart',
635-
636-
// TODO(yjbanov): https://github.com/flutter/flutter/issues/71583
637-
// The following tests are blocked to reduce the load on the build bot.
638-
// The bot currently frequently exceeds the timeout limit.
639-
'image_loading_integration.dart',
640-
'platform_messages_integration.dart',
641-
'profile_diagnostics_integration.dart',
642-
'scroll_wheel_integration.dart',
643634
],
644635
'profile': [],
645-
'release': [
646-
// TODO(yjbanov): https://github.com/flutter/flutter/issues/71583
647-
// The following tests are blocked to reduce the load on the build bot.
648-
// The bot currently frequently exceeds the timeout limit.
649-
'image_loading_integration.dart',
650-
'platform_messages_integration.dart',
651-
'profile_diagnostics_integration.dart',
652-
'scroll_wheel_integration.dart',
653-
'text_editing_integration.dart',
654-
'treeshaking_integration.dart',
655-
'url_strategy_integration.dart',
656-
],
636+
'release': [],
657637
};
658638

659639
/// Tests blocked for one of the rendering backends.
@@ -676,11 +656,5 @@ const Map<String, List<String>> blockedTestsListsMapForRenderBackends =
676656
// This test failed on canvaskit on all three build modes.
677657
'canvaskit': [
678658
'image_loading_integration.dart',
679-
'platform_messages_integration.dart',
680-
'profile_diagnostics_integration.dart',
681-
'scroll_wheel_integration.dart',
682-
'text_editing_integration.dart',
683-
'treeshaking_integration.dart',
684-
'url_strategy_integration.dart',
685659
],
686660
};

0 commit comments

Comments
 (0)