Skip to content

Commit

Permalink
Skip flaky test (#8506)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette authored Nov 4, 2024
1 parent 32718b0 commit 62f496e
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,22 @@ void main() {

logStatus('testing variable assignment');
await testAssignment(evalTester);

logStatus('testing eval on widget tree node');
await _testEvalOnWidgetTreeNode(evalTester);
});

testWidgets(
'eval with scope on widget tree node',
(tester) async {
await pumpAndConnectDevTools(tester, testApp);

final evalTester = EvalTester(tester);
await evalTester.prepareInspectorUI();

logStatus('testing eval on widget tree node');
await _testEvalOnWidgetTreeNode(evalTester);
},
// https://github.com/flutter/devtools/issues/8389
skip: true,
);
}

Future<void> _testEvalOnWidgetTreeNode(EvalTester tester) async {
Expand Down

0 comments on commit 62f496e

Please sign in to comment.