test(e2e): ignore flutter create stderr in integration tests

This commit is contained in:
Felix Angelov
2025-02-18 10:58:19 -06:00
parent 2ff93ae3a6
commit 5be792c337
@@ -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');