Unverified Commit 5aaac71f authored by liyuqian's avatar liyuqian Committed by GitHub

Wait for first frame in driver tests (#40617)

The transition_perf test is no longer flaky.
parent a1c482b9
...@@ -14,8 +14,7 @@ void main() { ...@@ -14,8 +14,7 @@ void main() {
setUpAll(() async { setUpAll(() async {
driver = await FlutterDriver.connect(); driver = await FlutterDriver.connect();
// TODO(liyuqian): enable the following once it's proved to be non-flaky by transition_perf_test.dart. await driver.waitUntilFirstFrameRasterized();
// await driver.waitUntilFirstFrameRasterized();
}); });
tearDownAll(() async { tearDownAll(() async {
......
...@@ -14,8 +14,7 @@ void main() { ...@@ -14,8 +14,7 @@ void main() {
setUpAll(() async { setUpAll(() async {
driver = await FlutterDriver.connect(); driver = await FlutterDriver.connect();
// TODO(liyuqian): enable the following once it's proved to be non-flaky by transition_perf_test.dart. await driver.waitUntilFirstFrameRasterized();
// await driver.waitUntilFirstFrameRasterized();
}); });
tearDownAll(() async { tearDownAll(() 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