Unverified Commit 1c92e848 authored by LongCatIsLooong's avatar LongCatIsLooong Committed by GitHub

Skip flaky tests in web.shared (#85577)

parent d707eedc
......@@ -5,7 +5,6 @@
// @dart = 2.8
import 'dart:async';
import 'dart:io';
import 'package:file/file.dart';
......@@ -52,7 +51,7 @@ void main() {
} finally {
await subscription.cancel();
}
});
}, skip: true); // Skippping for https://github.com/flutter/flutter/issues/85575.
testWithoutContext('newly added code executes during hot restart - canvaskit', () async {
final Completer<void> completer = Completer<void>();
......@@ -71,5 +70,6 @@ void main() {
} finally {
await subscription.cancel();
}
}, skip: Platform.isWindows); // Skipping for https://github.com/flutter/flutter/issues/85043
}, skip: true); // Skipping for https://github.com/flutter/flutter/issues/85575
// and https://github.com/flutter/flutter/issues/85043.
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment