feat: add aria label, fix test, transition constant for better testing

This commit is contained in:
2026-02-09 09:37:13 +05:00
parent ede31942d0
commit 2bbe59107c
12 changed files with 232 additions and 32 deletions
@@ -8,6 +8,7 @@ describe("TextInput.svelte", () => {
props: {
text: "Test text",
onenter: vi.fn(),
ariaLabel: "Test input",
},
});
@@ -21,6 +22,7 @@ describe("TextInput.svelte", () => {
props: {
text: "Initial",
onenter: vi.fn(),
ariaLabel: "Test input",
},
});
@@ -37,6 +39,7 @@ describe("TextInput.svelte", () => {
props: {
text: "Test",
onenter,
ariaLabel: "Test input",
},
});
@@ -53,6 +56,7 @@ describe("TextInput.svelte", () => {
props: {
text: "Test",
onenter,
ariaLabel: "Test input",
},
});