-
Notifications
You must be signed in to change notification settings - Fork 6k
Enable firefox integration tests #19164
Enable firefox integration tests #19164
Conversation
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat. Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
| throw StateError('Failed to locate Firefox driver on LUCI on path:' | ||
| '${_browserDriverDir.path}'); | ||
| } | ||
| return Future<void>.value(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why return asynchronously?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is overriding the abstract class' method. I added @override everywhere to make it more clear.
In this class we always return return Future<void>.value(); value. For example line 143.
|
Thanks for the review! |
* firefox integration tests enable * addressing reviewer comments
Enable firefox integration tests
LUCI run that shows the firefox integration tests are passing: https://chromium-swarm.appspot.com/task?id=4ce8d623bd36bb10
Note: I added the following cipd package flutter_internal/browser-drivers/firefoxdriver-linux in the recipe.
fixes: flutter/flutter#59650