Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
don't run debug mode on other browsers
  • Loading branch information
nturgut committed Nov 10, 2020
commit f2213f39b8b403732144ee711df71e388d92c399
4 changes: 3 additions & 1 deletion lib/web_ui/dev/integration_tests_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ class IntegrationTestsManager {

int numberOfPassedTests = 0;
int numberOfFailedTests = 0;
final Set<String> buildModes = {'debug', 'profile', 'release'};
final Set<String> buildModes = _browser == 'chrome'
? {'debug', 'profile', 'release'}
: {'profile', 'release'};
for (String fileName in e2eTestsToRun) {
for (String mode in buildModes) {
if (!blockedTestsListsMapForModes[mode].contains(fileName)) {
Expand Down