Files
ewoooc/tests/test_scheduler_whitepage_markers.py
OG T 0904a60237
All checks were successful
CD Pipeline / deploy (push) Successful in 1m29s
fix(scheduler): quiet cold-start noise gates
2026-05-06 00:31:30 +08:00

23 lines
602 B
Python

from scheduler import _missing_whitepage_markers
def test_whitepage_markers_accept_current_ewoooc_shell():
html = """
<html>
<body>
<aside class="momo-sidebar"></aside>
<main class="momo-layout">
<section class="momo-card">EwoooC 商品看板</section>
</main>
</body>
</html>
"""
assert _missing_whitepage_markers(html) == []
def test_whitepage_markers_keep_blank_page_failing():
html = "<html><body><main></main></body></html>"
assert _missing_whitepage_markers(html) == ["導航佈局", "系統識別", "內容容器"]