test(Input): add missing file type

This commit is contained in:
Benjamin Canac
2024-09-23 10:52:02 +02:00
parent 7d754c0015
commit 19bfc36976
2 changed files with 8 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ describe('Input', () => {
['with placeholder', { props: { placeholder: 'Search...' } }],
['with disabled', { props: { disabled: true } }],
['with required', { props: { required: true } }],
['with file type', { props: { type: 'file' } }],
['with icon', { props: { icon: 'i-heroicons-magnifying-glass' } }],
['with leading and icon', { props: { leading: true, icon: 'i-heroicons-magnifying-glass' } }],
['with leadingIcon', { props: { leadingIcon: 'i-heroicons-magnifying-glass' } }],