mirror of
https://github.com/Matysh/houseplan-card
synced 2026-07-31 08:28:31 +00:00
T1: demo/serve.mjs exports check/checkAll/finish — all 48 smokes now assert named facts and exit non-zero on a mismatch or an uncaught in-card exception (verified by breaking the kiosk guard on purpose). Informational values were frozen from a v1.43.1 run and cross-read against the source; timings assert budgets, not exact numbers. T2: new CI job 'smoke' gated on 'frontend', builds a FRESH bundle before running (the committed demo/srv/assets copy is a snapshot) and uploads per-file logs on failure. T3: [auto] now means 'a named failing check exists' and each line names it (43 lines); 72 aspirational markers honestly downgraded to [manual]. Fixed the 'ZERO edit buttons' contradiction (wrong since v1.30.1) and the opening-click line (true again since v1.43.1). Three smokes carried pre-v1.39.0/v1.25 expectations and were testing old behaviour: tap defaults for lights, card-wide tap action, label drag requiring plan mode. DEVELOPMENT.md documents the harness contract.
37 lines
2.1 KiB
JavaScript
37 lines
2.1 KiB
JavaScript
import { launch, checkAll, finish } from './serve.mjs';
|
|
const { page, browser } = await launch();
|
|
const res = await page.evaluate(async () => {
|
|
const out = {};
|
|
const c = window.__card;
|
|
const sr = () => c.shadowRoot || c.renderRoot;
|
|
const stage = () => sr().querySelector('.stage');
|
|
c._setMode('plan'); c._tool = 'openwall'; await c.updateComplete;
|
|
const H = 1000 / (c._curSpaceCfg.aspect || 1);
|
|
// 1) без наведения: курсор default, превью нет
|
|
c._cursorPt = null; c.requestUpdate(); await c.updateComplete;
|
|
out.idleCursor = getComputedStyle(stage()).cursor === 'default';
|
|
out.noPreview = !sr().querySelector('.openwall-preview');
|
|
// 2) наведение на общую стену r1|r2 (x=550): pointer + янтарное превью
|
|
c._cursorPt = [550, 0.25 * H]; c.requestUpdate(); await c.updateComplete;
|
|
out.hotCursor = getComputedStyle(stage()).cursor === 'pointer';
|
|
const prev = sr().querySelectorAll('.openwall-preview');
|
|
out.previewShown = prev.length > 0;
|
|
out.previewAmber = prev.length ? !prev[0].classList.contains('willclose') : null;
|
|
// превью лежит на стене x=550
|
|
out.previewOnWall = prev.length ? Math.abs(Number(prev[0].getAttribute('x1')) - 550) < 0.5 : null;
|
|
// 3) наведение в центр комнаты: снова default, превью исчезло
|
|
c._cursorPt = [300, 150]; c.requestUpdate(); await c.updateComplete;
|
|
out.missCursor = getComputedStyle(stage()).cursor === 'default';
|
|
out.missNoPreview = !sr().querySelector('.openwall-preview');
|
|
// 4) открыть границу → навести снова: превью красное сплошное (клик закроет)
|
|
c._openWallClick([550, 0.25 * H]); await c.updateComplete;
|
|
c._cursorPt = [550, 0.25 * H]; c.requestUpdate(); await c.updateComplete;
|
|
const prev2 = sr().querySelector('.openwall-preview');
|
|
out.willclose = prev2?.classList.contains('willclose') === true;
|
|
// прибрать
|
|
c._openWallClick([550, 0.25 * H]); await c.updateComplete;
|
|
return out;
|
|
});
|
|
checkAll(res);
|
|
await finish(browser, res);
|