Merge branch 'QA' into bug/issue5

This commit is contained in:
2025-07-07 14:32:30 +02:00
committed by GitHub
6 changed files with 155 additions and 12 deletions

View File

@@ -18,10 +18,5 @@ def test_shoul_display_page_on_known_email(client):
email = "admin@irontemple.com"
response = client.post('/showSummary', data={"email": email})
soup = BeautifulSoup(response.data, 'html.parser')
#assert soup.h2.text == "Welcome, "+email
welcome = "Welcome, "+email
assert welcome in response.data.decode()