Implement core value modals

This commit is contained in:
adilallo
2026-04-15 23:13:28 -06:00
parent beae150f02
commit eedb70f9f3
15 changed files with 806 additions and 101 deletions
+12
View File
@@ -59,6 +59,18 @@ describe("Create", () => {
}
});
it("uses login yellow backdrop when backdropVariant is loginYellow", () => {
renderWithProviders(
<Create
{...defaultProps}
backdropVariant="loginYellow"
headerContent={<div>Header</div>}
/>,
);
const overlay = document.querySelector(".backdrop-blur-md");
expect(overlay).toBeInTheDocument();
});
it("renders footer buttons when provided", () => {
const onBack = vi.fn();
const onNext = vi.fn();