Skip to content

Commit 6736af3

Browse files
committed
fix(#222): escape single quotation marks in data tables
1 parent 1f63ecc commit 6736af3

File tree

5 files changed

+133
-129
lines changed

5 files changed

+133
-129
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [3.0.0-rc.12] - 24/06/2022
2+
- Fix #222 - escape single quotation marks in data tables
3+
14
## [3.0.0-rc.11] - 24/06/2022
25
- 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`.
36
- 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`.

example_with_integration_test/integration_test/features/create.feature

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Feature: Creating todos
1111
Scenario: User can create multiple new todo items
1212
Given I fill the "todo" field with "Buy carrots"
1313
When I tap the "add" button
14-
And I fill the "todo" field with "Buy apples"
14+
And I fill the "todo" field with "Buy hannah's apples"
1515
When I tap the "add" button
1616
And I fill the "todo" field with "Buy blueberries"
1717
When I tap the "add" button
1818
Then I expect the todo list
19-
| Todo |
20-
| Buy blueberries |
21-
| Buy apples |
22-
| Buy carrots |
19+
| Todo |
20+
| Buy blueberries |
21+
| Buy hannah's apples |
22+
| Buy carrots |
2323
Given I wait 5 seconds for the animation to complete
2424
Given I have item with data
2525
"""

0 commit comments

Comments
 (0)