Unverified Commit c1de12dd authored by amirh's avatar amirh Committed by GitHub

Skip flaky test (expression_evaluation_test) (#19543)

parent bb338ef2
......@@ -6,7 +6,6 @@ import 'dart:async';
import 'package:file/file.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/base/platform.dart';
import 'package:test/test.dart';
import 'package:vm_service_client/vm_service_client.dart';
......@@ -110,6 +109,8 @@ void main() {
await breakInBuildMethod(_flutter);
await evaluateComplexReturningExpressions();
});
// https://github.com/flutter/flutter/issues/17833
}, timeout: const Timeout.factor(3), skip: platform.isWindows);
// https://github.com/flutter/flutter/issues/17833
// The test appears to be flaky and time out some times, skipping while
// investigation is ongoing: https://github.com/flutter/flutter/issues/19542
}, timeout: const Timeout.factor(3), skip: true);
}
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