From 99e3e33cf0a529fa3fe71af98ce5017054dbb8ea Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 22 Jun 2023 22:29:14 +0200 Subject: add preliminary tileproxy test --- tests/playwright/test_tileproxy.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/playwright/test_tileproxy.py (limited to 'tests/playwright') diff --git a/tests/playwright/test_tileproxy.py b/tests/playwright/test_tileproxy.py new file mode 100644 index 0000000..b948bab --- /dev/null +++ b/tests/playwright/test_tileproxy.py @@ -0,0 +1,11 @@ +from playwright.sync_api import Page + + +def test_tileproxy(page: Page, playwright_helper): + playwright_helper.login() + track_id = playwright_helper.add_track().id + + page.goto(f"/track/{track_id}") + + with page.expect_request("/tile/test/**"): + pass -- cgit v1.2.3