From 1e264f0d81d7ce271082bbbd34f5d939bdfc0c98 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Wed, 26 Jul 2023 14:20:20 -0500 Subject: [PATCH] fix(shorebird_cli): remove `shorebird doctor --fix` from integration test (#902) --- .../shorebird_cli_integration_test.dart | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart b/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart index debad792..42d87a93 100644 --- a/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart +++ b/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart @@ -75,25 +75,6 @@ void main() { (m) => ShorebirdYaml.fromJson(m!), ); - // Run the doctor command. This should yield a warning about the - // AndroidManifest.xml not containing the internet permission and suggest - // that the user run `shorebird doctor --fix`. - final shorebirdDoctorResult = runCommand( - 'shorebird doctor', - workingDirectory: cwd, - ); - expect(shorebirdDoctorResult.stderr, isEmpty); - expect(shorebirdDoctorResult.stdout, contains('shorebird doctor --fix')); - expect(shorebirdDoctorResult.exitCode, equals(0)); - - // Run the suggested `doctor --fix` command. - final shorebirdDoctorFixResult = runCommand( - 'shorebird doctor --fix', - workingDirectory: cwd, - ); - expect(shorebirdDoctorFixResult.stderr, isEmpty); - expect(shorebirdDoctorFixResult.exitCode, equals(0)); - // Verify that we have no releases for this app final preReleaseAppsListResult = runCommand( 'shorebird apps list',