From aedce673f760bc19f13aa0600e2c1df9ae502117 Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Wed, 6 Mar 2024 14:18:17 -0800 Subject: [PATCH] Run macOS test on `dev/integration_tests/ui` (#142735) https://github.com/flutter/flutter/issues/87508 is complete, swap integration_test and remove TODO. --- dev/devicelab/lib/tasks/run_tests.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev/devicelab/lib/tasks/run_tests.dart b/dev/devicelab/lib/tasks/run_tests.dart index 1b1850a9f4..f54d4334b5 100644 --- a/dev/devicelab/lib/tasks/run_tests.dart +++ b/dev/devicelab/lib/tasks/run_tests.dart @@ -38,9 +38,7 @@ TaskFunction createLinuxRunReleaseTest() { TaskFunction createMacOSRunDebugTest() { return DesktopRunOutputTest( - // TODO(cbracken): https://github.com/flutter/flutter/issues/87508#issuecomment-1043753201 - // Switch to dev/integration_tests/ui once we have CocoaPods working on M1 Macs. - '${flutterDirectory.path}/examples/hello_world', + '${flutterDirectory.path}/dev/integration_tests/ui', 'lib/main.dart', release: false, allowStderr: true, @@ -49,9 +47,7 @@ TaskFunction createMacOSRunDebugTest() { TaskFunction createMacOSRunReleaseTest() { return DesktopRunOutputTest( - // TODO(cbracken): https://github.com/flutter/flutter/issues/87508#issuecomment-1043753201 - // Switch to dev/integration_tests/ui once we have CocoaPods working on M1 Macs. - '${flutterDirectory.path}/examples/hello_world', + '${flutterDirectory.path}/dev/integration_tests/ui', 'lib/main.dart', release: true, allowStderr: true,