Files
fusion/packages/dashboard/app/__tests__/browser-layout-smoke-fixture.test.ts
Fusion (runfusion.ai) dae08e455d feat(FN-4999): fix completion handoff limbo and run context isolation
Fixes completion handoff limbo by adding self-healing recovery paths and improves run context isolation in the executor, with corresponding reliability interaction tests covering the new error recovery flows.

Fusion-Task-Id: FN-4999
2026-05-18 05:35:14 -07:00

15 lines
625 B
TypeScript

import { describe, expect, it } from "vitest";
import { createSmokeHtml } from "../../scripts/browser-layout-smoke.mjs";
describe("browser layout smoke fixture", () => {
it("includes PR flow fixture sections and class hooks", () => {
const html = createSmokeHtml();
expect(html).toContain('data-smoke="pr-create-modal"');
expect(html).toContain('data-smoke="pr-panel"');
expect(html).toContain('data-smoke="pr-checks"');
expect(html).toContain("pr-create-modal__preflight-row");
expect(html).toContain("pr-panel-check-chip--error");
expect(html).toContain("pr-checks__details-link");
});
});