App reorganization

This commit is contained in:
adilallo
2026-04-18 14:12:49 -06:00
parent f866d11ff8
commit e9dab04b34
288 changed files with 2698 additions and 5029 deletions
+1 -5
View File
@@ -32,6 +32,7 @@ componentTestSuite<TextInputProps>({
},
});
// Pure presentational; no provider context needed.
describe("TextInput (size tests)", () => {
it("renders with medium size by default", () => {
const { container } = render(<TextInput label="Test" inputSize="medium" />);
@@ -45,9 +46,4 @@ describe("TextInput (size tests)", () => {
expect(input).toHaveClass("h-[32px]");
});
it("accepts PascalCase size prop", () => {
const { container } = render(<TextInput label="Test" inputSize="Small" />);
const input = container.querySelector("input");
expect(input).toHaveClass("h-[32px]");
});
});