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