You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've extracted PatrolTester into a new package and we don't want to release another major version of the patrol package, so we need to avoid breaking changes. This issue collects small things that we may change in the future.
Delete typedef PatrolTester
patrolTest will always initialize NativeAutomator, so we can replace these lines of code in PatrolIntegrationTester:
final NativeAutomator? nativeAutomator;
NativeAutomator get native;
to
final NativeAutomator native;
or
final NativeAutomator nativeAutomator;
NativeAutomator get native => nativeAutomator;
Remove the nativeAutomation argument from the patrolTest() function
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar problem, please file a new issue. Make sure to follow the template and provide all the information necessary to reproduce the issue.
We've extracted PatrolTester into a new package and we don't want to release another major version of the patrol package, so we need to avoid breaking changes. This issue collects small things that we may change in the future.
to
or
The text was updated successfully, but these errors were encountered: