Show the content of the alert on the dashboard

The content is as important as which areas you’ve sent the broadcast to.
This commit is contained in:
Chris Hill-Scott
2020-10-13 15:43:25 +01:00
parent 64aa0d359c
commit 8dae4f771a
2 changed files with 7 additions and 4 deletions

View File

@@ -302,7 +302,7 @@ def test_broadcast_dashboard(
assert [
normalize_spaces(row.text) for row in page.select('table')[0].select('tbody tr')
] == [
'Example template To England and Scotland Live until tomorrow at 2:20am',
'Example template This is a test To England and Scotland Live until tomorrow at 2:20am',
]
assert normalize_spaces(page.select('main h2')[1].text) == (
@@ -311,7 +311,7 @@ def test_broadcast_dashboard(
assert [
normalize_spaces(row.text) for row in page.select('table')[1].select('tbody tr')
] == [
'Example template To England and Scotland Prepared by Test User',
'Example template This is a test To England and Scotland Prepared by Test User',
]
@@ -361,8 +361,8 @@ def test_previous_broadcasts_page(
assert [
normalize_spaces(row.text) for row in page.select('table')[0].select('tbody tr')
] == [
'Example template To England and Scotland Stopped 10 February at 2:20am',
'Example template To England and Scotland Finished yesterday at 8:20pm',
'Example template This is a test To England and Scotland Stopped 10 February at 2:20am',
'Example template This is a test To England and Scotland Finished yesterday at 8:20pm',
]