-
While testing a This would be useful for testing the structure of an email. This seems like it would not be too hard to implement. I could use the same Is this something people would want? I am willing to do the work. And if it is something people would want, would it make sense to have Example of how this would be useful. I have an email notification with chores past due and dude today that are listed in order of due date, under separate headings. Markdown looks something like ## Past Due
- Past due chore 1
- Past due chore 2
## Due Today
- Due today chore 1
- Due today chore 2 And I want to test the structure with $daily_digest = new DailyDigest($user);
$daily_digest->assertSeeInOrderText([
'Past Due',
'Past due chore 1',
'Past due chore 2',
'Due Today',
'Due today chore 1',
'Due today chore 2',
]); |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Added this in #40460 |
Beta Was this translation helpful? Give feedback.
Added this in #40460