import { describe, expect, it } from "vitest"; import { loadAllAppCssBaseOnly } from "../../test/cssFixture"; describe("TaskDetailModal CSS contract", () => { it("FN-4183 keeps detail source headers top-aligned so the disclosure toggle stays on the first row", async () => { const css = await loadAllAppCssBaseOnly(); expect(css).toMatch(/\.detail-source-header\s*\{[^}]*align-items\s*:\s*flex-start\s*;/); }); });