File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,8 @@ Future<void> expectTestsFail({
213213 List <String >? buildArgs,
214214 List <String >? testArgs,
215215}) async {
216+ // Skip on Windows due to Chrome test flakiness, see
217+ // https://github.com/dart-lang/build/issues/4123.
216218 var result = await runTests (
217219 usePrecompiled: usePrecompiled,
218220 buildArgs: buildArgs,
Original file line number Diff line number Diff line change 55@TestOn ('vm' )
66library ;
77
8+ import 'dart:io' ;
9+
810import 'package:io/io.dart' ;
911import 'package:path/path.dart' as p;
1012import 'package:test/test.dart' ;
@@ -36,6 +38,9 @@ void main() {
3638 );
3739
3840 test ('Failing tests print mapped stack traces' , () async {
41+ // Skip on Windows due to Chrome test flakiness, see
42+ // https://github.com/dart-lang/build/issues/4123.
43+ if (Platform .isWindows) return ;
3944 var result = await runTests (
4045 testArgs: ['--run-skipped' , 'test/hello_world_test.dart' ],
4146 );
You can’t perform that action at this time.
0 commit comments