aboutsummaryrefslogtreecommitdiff
path: root/tests/playwright
diff options
context:
space:
mode:
Diffstat (limited to 'tests/playwright')
-rw-r--r--tests/playwright/test_tileproxy.py11
1 files changed, 11 insertions, 0 deletions
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