From 9ad0b8b9a0c4666b2a1f12d5ae92a743df70f742 Mon Sep 17 00:00:00 2001 From: monkey-w1n5t0n Date: Sun, 28 Jun 2026 21:09:54 +0200 Subject: [PATCH] test(manifold): smoke asserts dock rail, not removed particle wordmark The default (Particle) view no longer renders the 'MEMLNaut' wordmark since the particle top bar became a heatmap strip; assert on the always- present 'Learning' dock drawer label instead so the smoke test reflects the current Console chrome. --- manifold/tests/e2e/smoke.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manifold/tests/e2e/smoke.spec.ts b/manifold/tests/e2e/smoke.spec.ts index b8980e6..0a53e8e 100644 --- a/manifold/tests/e2e/smoke.spec.ts +++ b/manifold/tests/e2e/smoke.spec.ts @@ -47,8 +47,10 @@ test('engine loads, spine propagates, console renders', async ({ page }) => { // 3. Feedback runs without throwing. await page.evaluate(() => window.__nisps!.thumbsDown()); - // 4. The convertible Console rendered. - await expect(page.getByText('MEMLNaut')).toBeVisible(); + // 4. The convertible Console rendered (assert on the dock drawer rail, which + // is always present — the old "MEMLNaut" wordmark only shows outside + // Particle mode now that the particle top bar is a heatmap strip). + await expect(page.getByText('Learning')).toBeVisible(); // 5. No "C15" anywhere in the rendered UI. const body = await page.evaluate(() => document.body.innerText);