-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration_test package support and null-safety #125
Open
jonsamwell
wants to merge
117
commits into
master
Choose a base branch
from
integration_test__package_support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…g a facade over the Flutter driver and WidgetTester so driving the app becomes agnostic of implementation
…as this functionality is now in the app driver adapters
…ts running using the integration_test library
…f the lib working so need to remove references to flutter_test / dart:ui
…te before each test
fixes for changelog
feature folder fix in changelog
… library works on web
…ng tests which can affect how frames are painted and the speed of the test run, I've removed the default value which might be responsible for #231
…on Android (thanks to @youssef-t for the solution) - Fix #216 - ensure step exceptions and `expect` failure results are added as errors to the json report - Scenarios can now have descriptions which also appear in the json reporter output
This eases running tests on Flutter web #243
--keep-app-running is no more avaliable
- Fix #245 - removing the redundant escaping
…support feat: add standard configuration for web
- Fix #256 - Ensure all exceptions generated when running a step are logged - Fix #253 - Ensure features with descriptions that span more than one line are parsed correctly - Fix #252 - Ensure all async code is awaited - When taking a screenshot on the web use the render element rather than relying on native code that does not work
AnimatedList is not subclassing from ScrollView, and the seen behaviour was that nativeDriver.state was trying to ensure that a single state is available which is not true for AnimatedList. Regression test was performed on ListView.
Change scroll code to make it working also for AnimatedList
…generator.dart Co-authored-by: August Oberhauser <[email protected]>
…generator.dart Co-authored-by: August Oberhauser <[email protected]>
Make it possible to run the tests with flutter test instead of flutter drive.
Compability with Dart 3, Flutter 3.10
any chance to bump to rc18 on hosted? preferably after #292 |
Fix code generation error after e8c874f
fix: remove bracket on gherkin generator
Remove unnecessary_await_in_return warning from gherkin g.dart files
Hello @jonsamwell , |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note that null safety cannot yet be achived in the flutter stable branch due to flutter_driver and integration_test not being null safe themselves see flutter/flutter#71379 & flutter/flutter#80293