From 2efc642f029fee9a5cf0640a766acd3cdf633eba Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 29 Jun 2023 20:38:30 +0200 Subject: tileproxy: use caplog in the test See if it works, it might be handy for other tests in the future as well. --- tests/playwright/test_tileproxy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/playwright') diff --git a/tests/playwright/test_tileproxy.py b/tests/playwright/test_tileproxy.py index b948bab..bf1146b 100644 --- a/tests/playwright/test_tileproxy.py +++ b/tests/playwright/test_tileproxy.py @@ -1,7 +1,7 @@ from playwright.sync_api import Page -def test_tileproxy(page: Page, playwright_helper): +def test_tileproxy(page: Page, playwright_helper, caplog): playwright_helper.login() track_id = playwright_helper.add_track().id @@ -9,3 +9,5 @@ def test_tileproxy(page: Page, playwright_helper): with page.expect_request("/tile/test/**"): pass + + assert "Skipping tile proxy request for testing URL" in caplog.messages -- cgit v1.2.3