Skip to content

Commit 350a2b5

Browse files
authored
Skip tests with Chrome on Windows. (#4124)
1 parent 07a518d commit 350a2b5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

_test/test/common/utils.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,9 @@ Future<void> expectTestsPass({
228228
List<String>? buildArgs,
229229
List<String>? testArgs,
230230
}) async {
231+
// Skip on Windows due to Chrome test flakiness, see
232+
// https://github.com/dart-lang/build/issues/4123.
233+
if (Platform.isWindows) return;
231234
var result = await runTests(
232235
usePrecompiled: usePrecompiled,
233236
buildArgs: buildArgs,

0 commit comments

Comments
 (0)