Интегрирован 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
@@ -0,0 +1,14 @@
"""E2E smoke: /feed_consumption."""
from __future__ import annotations
import pytest
pytestmark = pytest.mark.e2e
def test_feed_consumption_page_loads(zootech_authenticated_page, live_server_url) -> None:
page = zootech_authenticated_page
page.goto(f"{live_server_url}/feed_consumption")
page.wait_for_load_state("domcontentloaded")
assert page.locator("body").is_visible()