chore(deps): update dependency @storybook/addon-a11y to v10.2.18 #32

Merged
bea merged 2 commits from renovate/storybook-addon-a11y-10.x-lockfile into main 2026-03-13 23:04:38 +01:00
Collaborator

This PR contains the following updates:

Package Type Update Change
@storybook/addon-a11y (source) devDependencies patch 10.2.1710.2.18

Release Notes

storybookjs/storybook (@​storybook/addon-a11y)

v10.2.18

Compare 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y)) | devDependencies | patch | [`10.2.17` → `10.2.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/10.2.17/10.2.18) | --- ### Release Notes <details> <summary>storybookjs/storybook (@&#8203;storybook/addon-a11y)</summary> ### [`v10.2.18`](https://github.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#10218) [Compare Source](https://github.com/storybookjs/storybook/compare/v10.2.17...v10.2.18) - Core: Correctly fallback to first detected vitest config file - [#&#8203;33865](https://github.com/storybookjs/storybook/pull/33865), thanks [@&#8203;yannbf](https://github.com/yannbf)! - Core: Fix error reporting in ManagerErrorBoundary - [#&#8203;33915](https://github.com/storybookjs/storybook/pull/33915), thanks [@&#8203;ghengeveld](https://github.com/ghengeveld)! </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni41IiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovate added 1 commit 2026-03-13 15:15:51 +01:00
chore(deps): update dependency @storybook/addon-a11y to v10.2.18
Some checks failed
continuous-integration/drone/pr Build is failing
bb2b1b8c76
Owner

Build #162 - Unit Test Timeout

Problema: Il test DatePicker > opens popup from icon button and closes with Escape in tests/components/DatePicker.test.tsx supera il timeout di 5000ms durante l'esecuzione in CI.

Root cause: Il file vitest.config.ts non ha una configurazione esplicita per testTimeout, 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 testTimeout nella sezione test di vitest.config.ts:

test: {
  environment: 'jsdom',
  setupFiles: ['./tests/setup.ts'],
  testTimeout: 10000,  // ← aggiungere questa linea
  // ...resto della configurazione
}

Questa modifica garantisce sufficiente margine temporale senza impattare i test che completano più velocemente.

## ❌ Build #162 - Unit Test Timeout **Problema:** Il test `DatePicker > opens popup from icon button and closes with Escape` in `tests/components/DatePicker.test.tsx` supera il timeout di 5000ms durante l'esecuzione in CI. **Root cause:** Il file `vitest.config.ts` non ha una configurazione esplicita per `testTimeout`, 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 `testTimeout` nella sezione `test` di `vitest.config.ts`: ```typescript test: { environment: 'jsdom', setupFiles: ['./tests/setup.ts'], testTimeout: 10000, // ← aggiungere questa linea // ...resto della configurazione } ``` Questa modifica garantisce sufficiente margine temporale senza impattare i test che completano più velocemente.
bea added 1 commit 2026-03-13 22:59:35 +01:00
fix(tests): increase testTimeout to 10000ms for slow CI environment
All checks were successful
continuous-integration/drone/pr Build is passing
b166efcb26
bea merged commit 4d306d8968 into main 2026-03-13 23:04:38 +01:00
Sign in to join this conversation.
No Reviewers
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: panic.haus/web-ui#32