From 5be792c337afc7f2a8e5bc0b8874e31cdbc0efe0 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Tue, 18 Feb 2025 10:58:19 -0600 Subject: [PATCH] test(e2e): ignore `flutter create` stderr in integration tests --- .../integration_test/shorebird_cli_integration_test.dart | 3 +-- 1 file changed, 1 insertion(+), 2 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 f6626748..26cde729 100644 --- a/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart +++ b/packages/shorebird_cli/integration_test/shorebird_cli_integration_test.dart @@ -92,7 +92,6 @@ void main() { 'flutter create $testAppName', workingDirectory: cwd, ); - expect(createAppResult.stderr, isEmpty); expect(createAppResult.exitCode, equals(0)); cwd = p.join(cwd, testAppName); @@ -102,7 +101,7 @@ void main() { 'shorebird init --verbose', workingDirectory: cwd, ); - + expect(initShorebirdResult.stderr, isEmpty); expect(initShorebirdResult.exitCode, equals(0)); final shorebirdYamlPath = p.join(cwd, 'shorebird.yaml');