File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -135,19 +135,23 @@ void main() {
135135 group ('currentRegion' , () {
136136 const regionPrint = 'test/src/region_print.dart' ;
137137
138- test ('not environment' , () async {
139- final proc = await _run (regionPrint);
138+ test (
139+ 'not environment' ,
140+ onPlatform: const {'windows' : Skip ('Broken on windows' )},
141+ () async {
142+ final proc = await _run (regionPrint);
140143
141- final errorOut = await proc.stderrStream ().toList ();
144+ final errorOut = await proc.stderrStream ().toList ();
142145
143- await expectLater (
144- errorOut,
145- containsAll (MetadataValue .region.environmentValues),
146- );
147- await expectLater (proc.stdout, emitsDone);
146+ await expectLater (
147+ errorOut,
148+ containsAll (MetadataValue .region.environmentValues),
149+ );
150+ await expectLater (proc.stdout, emitsDone);
148151
149- await proc.shouldExit (255 );
150- });
152+ await proc.shouldExit (255 );
153+ },
154+ );
151155
152156 test ('environment set' , () async {
153157 final proc = await _run (
You can’t perform that action at this time.
0 commit comments