Интегрирован wesp в сайт
CI / quality (push) Canceled after 0s

This commit is contained in:
влад
2026-07-17 12:57:18 +03:00
parent 5dfa06ddbe
commit 355c0ef9f1
883 changed files with 194576 additions and 177 deletions
+13
View File
@@ -0,0 +1,13 @@
"""E2E smoke: /unloading (localhost kiosk bypass)."""
from __future__ import annotations
import pytest
pytestmark = pytest.mark.e2e
def test_unloading_page_loads(page, live_server_url) -> None:
page.goto(f"{live_server_url}/unloading")
page.wait_for_load_state("domcontentloaded")
assert page.locator("body").is_visible()