diff --git a/src/PrayerTracker.Tests/UI/UtilsTests.fs b/src/PrayerTracker.Tests/UI/UtilsTests.fs
index a1d9f42..dbf2384 100644
--- a/src/PrayerTracker.Tests/UI/UtilsTests.fs
+++ b/src/PrayerTracker.Tests/UI/UtilsTests.fs
@@ -61,6 +61,11 @@ let htmlToPlainTextTests =
test "does not fail when passed an empty string" {
Expect.equal (htmlToPlainText "") "" "Should return an empty string when given an empty string"
}
+ test "preserves blank lines for two consecutive line breaks" {
+ let expected = "Paragraph 1\n\nParagraph 2\n\n...and paragraph 3"
+ Expect.equal (htmlToPlainText "Paragraph 1
Paragraph 2
...and paragraph 3")
+ expected "Blank lines not preserved for consecutive line breaks"
+ }
]
[]