fix : composant nombre et taux horaire

This commit is contained in:
2026-03-19 09:21:29 +01:00
parent 11d60e687b
commit c82eaa0939
8 changed files with 114 additions and 21 deletions

View File

@@ -26,11 +26,11 @@ const mountInputNumber = (props: InputNumberProps = {}) =>
})
describe('MalioInputNumber', () => {
it('renders the input with a fixed 20px height', () => {
it('renders the input with a fixed 22px height', () => {
const wrapper = mountInputNumber()
const input = wrapper.get('input')
expect(input.classes()).toContain('h-[20px]')
expect(input.classes()).toContain('h-[22px]')
})
it('renders the increment and decrement buttons with a fixed 20px height', () => {