holy moly thats a lotta damage

This commit is contained in:
2026-05-25 22:10:19 -04:00
parent c01c1a5636
commit b62ab77fbe
47 changed files with 1444 additions and 129 deletions

View File

@@ -119,13 +119,13 @@ describe("AuthLayout", () => {
expect(document.body.textContent).toContain("Form content");
});
it("renders ShieldAI branding", () => {
it("renders Kordant branding", () => {
mount(() => (
<AuthLayout>
<p>Content</p>
</AuthLayout>
));
expect(document.body.textContent).toContain("ShieldAI");
expect(document.body.textContent).toContain("Kordant");
});
it("renders gradient-card wrapper", () => {
@@ -143,7 +143,7 @@ describe("AuthLayout", () => {
<p>Content</p>
</AuthLayout>
));
expect(document.body.textContent).toContain("ShieldAI");
expect(document.body.textContent).toContain("Kordant");
expect(document.body.textContent).toContain("AI-Powered Identity Protection");
});
});