Skip to content

Commit

Permalink
fix(#222): escape single quotation marks in data tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsamwell committed Jun 24, 2022
1 parent 1f63ecc commit 6736af3
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 129 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [3.0.0-rc.12] - 24/06/2022
- Fix #222 - escape single quotation marks in data tables

## [3.0.0-rc.11] - 24/06/2022
- Fix #231 - Removed the use of explicitly calling `pumpAndSettle` in the pre-defined steps in favour of the implicit `pumpAndSettle` calls used in the `WidgetTesterAppDriverAdapter`.
- Added ability to add a `appLifecyclePumpHandler` to override the default handler that determines how the app is pumped during lifecycle events. Useful if your app has a long splash screen etc. Parameter is on `executeTestSuite`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ Feature: Creating todos
Scenario: User can create multiple new todo items
Given I fill the "todo" field with "Buy carrots"
When I tap the "add" button
And I fill the "todo" field with "Buy apples"
And I fill the "todo" field with "Buy hannah's apples"
When I tap the "add" button
And I fill the "todo" field with "Buy blueberries"
When I tap the "add" button
Then I expect the todo list
| Todo |
| Buy blueberries |
| Buy apples |
| Buy carrots |
| Todo |
| Buy blueberries |
| Buy hannah's apples |
| Buy carrots |
Given I wait 5 seconds for the animation to complete
Given I have item with data
"""
Expand Down
Loading

0 comments on commit 6736af3

Please sign in to comment.