Unverified Commit 5034d575 authored by Anna Gringauze's avatar Anna Gringauze Committed by GitHub

Disable web expression evaluation tests (#69728)

Temporarily disable web expression evaluation tests,
until we figure out how to disable the only on non-web bot.
parent bf94fa07
...@@ -57,7 +57,7 @@ void batch1() { ...@@ -57,7 +57,7 @@ void batch1() {
await breakInTopLevelFunction(_flutter); await breakInTopLevelFunction(_flutter);
await failToEvaluateExpression(_flutter); await failToEvaluateExpression(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - no native javascript objects in static scope', () async { testWithoutContext('flutter run expression evaluation - no native javascript objects in static scope', () async {
await initProject(); await initProject();
...@@ -65,7 +65,7 @@ void batch1() { ...@@ -65,7 +65,7 @@ void batch1() {
await breakInTopLevelFunction(_flutter); await breakInTopLevelFunction(_flutter);
await checkStaticScope(_flutter); await checkStaticScope(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - can handle compilation errors', () async { testWithoutContext('flutter run expression evaluation - can handle compilation errors', () async {
await initProject(); await initProject();
...@@ -73,7 +73,7 @@ void batch1() { ...@@ -73,7 +73,7 @@ void batch1() {
await breakInTopLevelFunction(_flutter); await breakInTopLevelFunction(_flutter);
await evaluateErrorExpressions(_flutter); await evaluateErrorExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - can evaluate trivial expressions in top level function', () async { testWithoutContext('flutter run expression evaluation - can evaluate trivial expressions in top level function', () async {
await initProject(); await initProject();
...@@ -81,7 +81,7 @@ void batch1() { ...@@ -81,7 +81,7 @@ void batch1() {
await breakInTopLevelFunction(_flutter); await breakInTopLevelFunction(_flutter);
await evaluateTrivialExpressions(_flutter); await evaluateTrivialExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - can evaluate trivial expressions in build method', () async { testWithoutContext('flutter run expression evaluation - can evaluate trivial expressions in build method', () async {
await initProject(); await initProject();
...@@ -89,7 +89,7 @@ void batch1() { ...@@ -89,7 +89,7 @@ void batch1() {
await breakInBuildMethod(_flutter); await breakInBuildMethod(_flutter);
await evaluateTrivialExpressions(_flutter); await evaluateTrivialExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - can evaluate complex expressions in top level function', () async { testWithoutContext('flutter run expression evaluation - can evaluate complex expressions in top level function', () async {
await initProject(); await initProject();
...@@ -97,7 +97,7 @@ void batch1() { ...@@ -97,7 +97,7 @@ void batch1() {
await breakInTopLevelFunction(_flutter); await breakInTopLevelFunction(_flutter);
await evaluateComplexExpressions(_flutter); await evaluateComplexExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter run expression evaluation - can evaluate complex expressions in build method', () async { testWithoutContext('flutter run expression evaluation - can evaluate complex expressions in build method', () async {
await initProject(); await initProject();
...@@ -105,7 +105,7 @@ void batch1() { ...@@ -105,7 +105,7 @@ void batch1() {
await breakInBuildMethod(_flutter); await breakInBuildMethod(_flutter);
await evaluateComplexExpressions(_flutter); await evaluateComplexExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
} }
void batch2() { void batch2() {
...@@ -149,7 +149,7 @@ void batch2() { ...@@ -149,7 +149,7 @@ void batch2() {
await breakInMethod(_flutter); await breakInMethod(_flutter);
await failToEvaluateExpression(_flutter); await failToEvaluateExpression(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter test expression evaluation - can evaluate trivial expressions in a test', () async { testWithoutContext('flutter test expression evaluation - can evaluate trivial expressions in a test', () async {
await initProject(); await initProject();
...@@ -157,7 +157,7 @@ void batch2() { ...@@ -157,7 +157,7 @@ void batch2() {
await breakInMethod(_flutter); await breakInMethod(_flutter);
await evaluateTrivialExpressions(_flutter); await evaluateTrivialExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
testWithoutContext('flutter test expression evaluation - can evaluate complex expressions in a test', () async { testWithoutContext('flutter test expression evaluation - can evaluate complex expressions in a test', () async {
await initProject(); await initProject();
...@@ -165,7 +165,7 @@ void batch2() { ...@@ -165,7 +165,7 @@ void batch2() {
await breakInMethod(_flutter); await breakInMethod(_flutter);
await evaluateComplexExpressions(_flutter); await evaluateComplexExpressions(_flutter);
await cleanProject(); await cleanProject();
}, skip: platform.isMacOS); }, skip: 'Cannot run on non-web-bot'); // Issue: https://github.com/flutter/flutter/issues/69711
} }
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