-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When a comment is inserted in the midst of a table, the rest of the table is unproperly formatted
- Loading branch information
Showing
3 changed files
with
84 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Feature: Test Formatter | ||
Scenario: Comment between rows | ||
Given table my_table | ||
| col a | col b | | ||
| 1 | 2 | | ||
# A comment about the row below | ||
| 3 | 4 | | ||
# Another comment about the row below | ||
| 5 | 6 | | ||
| 7 | 8 | | ||
| 9 | 10 | | ||
Given table my_table | ||
| col a | col b | | ||
| 1 | 2 | | ||
# A comment about the row below | ||
| 3 | 4 | | ||
# Another comment about the row below | ||
| 5 | 6 | | ||
Given a second thing | ||
Given another second thing | ||
Then another thing happened |
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
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