chore(deps): update dependency @storybook/addon-a11y to v10.2.18 #32
Reference in New Issue
Block a user
Delete Branch "renovate/storybook-addon-a11y-10.x-lockfile"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
10.2.17→10.2.18Release Notes
storybookjs/storybook (@storybook/addon-a11y)
v10.2.18Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.
❌ Build #162 - Unit Test Timeout
Problema: Il test
DatePicker > opens popup from icon button and closes with Escapeintests/components/DatePicker.test.tsxsupera il timeout di 5000ms durante l'esecuzione in CI.Root cause: Il file
vitest.config.tsnon ha una configurazione esplicita pertestTimeout, quindi utilizza il default di 5000ms. Il test DatePicker borderline supera questo limite in ambiente CI.Fix proposto: Aumentare il timeout a 10000ms aggiungendo il parametro
testTimeoutnella sezionetestdivitest.config.ts:Questa modifica garantisce sufficiente margine temporale senza impattare i test che completano più velocemente.