diff --git a/gcp/test/gcp_test.dart b/gcp/test/gcp_test.dart index 4835dce4..f87c303f 100644 --- a/gcp/test/gcp_test.dart +++ b/gcp/test/gcp_test.dart @@ -135,19 +135,23 @@ void main() { group('currentRegion', () { const regionPrint = 'test/src/region_print.dart'; - test('not environment', () async { - final proc = await _run(regionPrint); + test( + 'not environment', + () async { + final proc = await _run(regionPrint); - final errorOut = await proc.stderrStream().toList(); + final errorOut = await proc.stderrStream().toList(); - await expectLater( - errorOut, - containsAll(MetadataValue.region.environmentValues), - ); - await expectLater(proc.stdout, emitsDone); + await expectLater( + errorOut, + containsAll(MetadataValue.region.environmentValues), + ); + await expectLater(proc.stdout, emitsDone); - await proc.shouldExit(255); - }); + await proc.shouldExit(255); + }, + onPlatform: const {'windows': Skip('Broken on windows')}, + ); test('environment set', () async { final proc = await _run(