This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,15 +165,15 @@ class IntegrationTestsManager {
165165 IntegrationArguments .fromBrowser (_browser);
166166 final int exitCode = await runProcess (
167167 executable,
168- arguments.getTestArguments (testName, 'profile ' ),
168+ arguments.getTestArguments (testName, 'release ' ),
169169 workingDirectory: directory.path,
170170 );
171171
172172 if (exitCode != 0 ) {
173173 io.stderr
174174 .writeln ('ERROR: Failed to run test. Exited with exit code $exitCode '
175175 '. To run $testName locally use the following command:'
176- '\n\n ${arguments .getCommandToRun (testName , 'profile ' )}' );
176+ '\n\n ${arguments .getCommandToRun (testName , 'release ' )}' );
177177 return false ;
178178 } else {
179179 return true ;
@@ -341,7 +341,7 @@ class ChromeIntegrationArguments extends IntegrationArguments {
341341
342342 String getCommandToRun (String testName, String mode) {
343343 String statementToRun = 'flutter drive '
344- '--target=test_driver/${testName } -d web-server --profile '
344+ '--target=test_driver/${testName } -d web-server --release '
345345 '--browser-name=chrome --local-engine=host_debug_unopt' ;
346346 if (isLuci) {
347347 statementToRun = '$statementToRun --chrome-binary='
You can’t perform that action at this time.
0 commit comments