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
15 lines
625 B
TypeScript
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");
|
|
});
|
|
});
|