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.
36 lines
1.5 KiB
JavaScript
36 lines
1.5 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;
|
|
// выбрать f2 и редактор устройств
|
|
c._space = 'garden'; c._setMode('devices'); await c.updateComplete;
|
|
const nav = JSON.parse(localStorage.getItem('houseplan_card_nav_v1'));
|
|
out.saved = nav.space === 'garden' && nav.mode === 'devices';
|
|
// пересоздать карточку (эмуляция закрытия вкладки; кэш конфига в LS уже есть)
|
|
const c2 = document.createElement('houseplan-card');
|
|
c2.setConfig({ type: 'custom:houseplan-card' });
|
|
c2.hass = c.hass;
|
|
document.body.appendChild(c2);
|
|
await new Promise((r) => setTimeout(r, 300));
|
|
c2.hass = { ...c.hass };
|
|
await c2.updateComplete;
|
|
out.spaceRestored = c2._space === 'garden';
|
|
out.modeRestored = c2._mode === 'devices';
|
|
// хэш приоритетнее сохранённого
|
|
location.hash = '#space=f1';
|
|
const c3 = document.createElement('houseplan-card');
|
|
c3.setConfig({ type: 'custom:houseplan-card' });
|
|
c3.hass = c.hass;
|
|
document.body.appendChild(c3);
|
|
await new Promise((r) => setTimeout(r, 300));
|
|
out.hashWins = c3._space === 'f1';
|
|
location.hash = '';
|
|
c2.remove(); c3.remove();
|
|
// вернуть исходное
|
|
c._setMode('view'); c._space = 'f1'; c._saveNav(); await c.updateComplete;
|
|
return out;
|
|
});
|
|
checkAll(res);
|
|
await finish(browser, res);
|