diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-06-22 22:29:14 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-06-22 22:29:14 +0200 |
commit | 99e3e33cf0a529fa3fe71af98ce5017054dbb8ea (patch) | |
tree | d4a8ec273488803341b15ea0048c3594fbbcd0c0 /tests | |
parent | 7b0fe14d07277a0b9e6b709e933c1c40fd2af748 (diff) | |
download | fietsboek-99e3e33cf0a529fa3fe71af98ce5017054dbb8ea.tar.gz fietsboek-99e3e33cf0a529fa3fe71af98ce5017054dbb8ea.tar.bz2 fietsboek-99e3e33cf0a529fa3fe71af98ce5017054dbb8ea.zip |
add preliminary tileproxy test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/playwright/test_tileproxy.py | 11 |
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 |