Releases: jonsamwell/flutter_gherkin
Releases · jonsamwell/flutter_gherkin
3.0.0-rc.3
[3.0.0-rc.3] - 21/06/2021
- POSSIBLE BREAKING CHANGE: Removed tap call before enterText is invoked in
WidgetTesterAppDriverAdapter
this was due to the fact that it opens the on-screen keyboard which is not closed after the text is entered so it could be blocking further controls from view. - Fix: #150: Better handling of JSON strings in multiline string segments in feature files
- Fix: #141 & #128: Added example of how to generate html report from json report output and fixed all scenarios ending up in the last feature section of the json report
3.0.0-rc.2
[3.0.0-rc.2] - 21/06/2021
- Fixed late initialization error when invoking hooks
- Updated float parameter parser so an exception is not thrown during parsing
3.0.0-rc.5
[3.0.0-rc.5] - 22/06/2021
- Ensure scenario support files (world etc) as always disposed ensure when test throws error
3.0.0-rc.4
[3.0.0-rc.4] - 21/06/2021
- Removed debug code
2.0.0
1.2.0
[1.2.0] - 03/05/2021
-
Upgraded to the null-safety version of dart_gherkin, as such there are some breaking changes to be aware of (see https://github.com/jonsamwell/dart_gherkin/blob/master/CHANGELOG.md for the full list):
- BREAKING CHANGE: Table has been renamed to GherkinTable to avoid naming clashes
- BREAKING CHANGE: exitAfterTestRun configuration option has been removed as it depends on importing dart:io which is not available under certain environments (dartjs for example).
- BREAKING CHANGE: Reporter->onException() exception parameter is now an object rather than an exception
- POSSIBLE BREAKING CHANGE: Feature file discovery has been refactored to abstract it from the external Glob dependency. It now support the three native dart Patterns (String, RegExp & Glob). There is potential here for your patterns to not work anymore due as the default IoFeatureFileAccessor assumes the current directory is the working directory to search from. For the most part this simple regex is probably enough to get you going.
RegExp('features/*.*.feature')
-
Allow dart-define to be passed to the Flutter build (thanks @pholey)
1.1.9
[1.1.9] - 24/11/2020
1.1.8+9
1.1.8+8
[1.1.8+8] - 11/08/2020
- Added well know steps and a driver helper method to long press a widget (fixed issue and documentation)
When I long press "controlKey" button
When I long press "controlKey" icon for 1500 milliseconds
1.1.8+7
[1.1.8+7] - 11/08/2020
- Added well know steps and a driver helper method to long press a widget
When I long press "controlKey" button
When I long press "controlKey" icon for 1500 milliseconds