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.
This commit is contained in:
Darren Austin 2021-06-07 20:20:58 -07:00 committed by GitHub
parent 21273fde8e
commit c7bfef6721
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,8 +104,8 @@ void main() {
await start(expressionEvaluation: true);
await evaluateComplexExpressionsInLibrary(flutter);
});
});
}, skip: true, // Flaky tests: https://github.com/flutter/flutter/issues/84012
);
group('Flutter test for web', () {
final TestsProject project = TestsProject();
@ -170,7 +170,8 @@ void main() {
await startPaused(expressionEvaluation: true);
await evaluateComplexExpressionsInLibrary(flutter);
});
});
}, skip: true, // Flaky tests: https://github.com/flutter/flutter/issues/84012
);
}
Future<void> failToEvaluateExpression(FlutterTestDriver flutter) async {