Unverified Commit c7bfef67 authored by Darren Austin's avatar Darren Austin Committed by GitHub

Mark flaky tests in 'expression_evaluation_web_test' as skipped. (#84163)

Turned off all tests in expression_evaluation_web_test.dart as there were several that appeared in flake reports.
parent 21273fde
...@@ -104,8 +104,8 @@ void main() { ...@@ -104,8 +104,8 @@ void main() {
await start(expressionEvaluation: true); await start(expressionEvaluation: true);
await evaluateComplexExpressionsInLibrary(flutter); await evaluateComplexExpressionsInLibrary(flutter);
}); });
}); }, skip: true, // Flaky tests: https://github.com/flutter/flutter/issues/84012
);
group('Flutter test for web', () { group('Flutter test for web', () {
final TestsProject project = TestsProject(); final TestsProject project = TestsProject();
...@@ -170,7 +170,8 @@ void main() { ...@@ -170,7 +170,8 @@ void main() {
await startPaused(expressionEvaluation: true); await startPaused(expressionEvaluation: true);
await evaluateComplexExpressionsInLibrary(flutter); await evaluateComplexExpressionsInLibrary(flutter);
}); });
}); }, skip: true, // Flaky tests: https://github.com/flutter/flutter/issues/84012
);
} }
Future<void> failToEvaluateExpression(FlutterTestDriver flutter) async { Future<void> failToEvaluateExpression(FlutterTestDriver flutter) async {
......
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