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 (@​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 - [#​33865](https://github.com/storybookjs/storybook/pull/33865), thanks [@​yannbf](https://github.com/yannbf)!
- Core: Fix error reporting in ManagerErrorBoundary - [#​33915](https://github.com/storybookjs/storybook/pull/33915), thanks [@​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==-->
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.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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.