This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/next/code/addons/docs) ([source](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs)) | devDependencies | patch | [`10.2.17` → `10.2.18`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/10.2.17/10.2.18) |
---
### Release Notes
<details>
<summary>storybookjs/storybook (@​storybook/addon-docs)</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==-->
Il test DatePicker > opens popup from icon button and closes with Escape in tests/components/DatePicker.test.tsx va in timeout durante il Drone build #163.
Dettagli:
Durata del test in CI: 5191ms
Timeout di default di vitest: 5000ms
Il test supera il limite di soli 191ms (il CI è leggermente più lento)
🔧 Fix Proposto
Aggiungere testTimeout: 10000 nella sezione test di vitest.config.ts:
Questo fix è preferibile rispetto a configurare il timeout solo per quel singolo test perché:
Copre anche future regressions simili
Consente al CI di completare i test senza margini troppo stretti
Build status:✅ Una volta applicato questo fix, il build #163 dovrebbe passare.
## 🔴 Problema: Test Timeout
Il test `DatePicker > opens popup from icon button and closes with Escape` in `tests/components/DatePicker.test.tsx` va in timeout durante il Drone build #163.
**Dettagli:**
- Durata del test in CI: **5191ms**
- Timeout di default di vitest: **5000ms**
- Il test supera il limite di soli 191ms (il CI è leggermente più lento)
### 🔧 Fix Proposto
Aggiungere `testTimeout: 10000` nella sezione `test` di `vitest.config.ts`:
```diff
export default defineConfig({
test: {
+ testTimeout: 10000,
globals: true,
environment: 'jsdom',
setupFiles: ['tests/setup.ts'],
},
});
```
Questo fix è preferibile rispetto a configurare il timeout solo per quel singolo test perché:
- Copre anche future regressions simili
- Consente al CI di completare i test senza margini troppo stretti
**Build status:** ✅ Una volta applicato questo fix, il build #163 dovrebbe passare.
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-docs)
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.
🔴 Problema: Test Timeout
Il test
DatePicker > opens popup from icon button and closes with Escapeintests/components/DatePicker.test.tsxva in timeout durante il Drone build #163.Dettagli:
🔧 Fix Proposto
Aggiungere
testTimeout: 10000nella sezionetestdivitest.config.ts:Questo fix è preferibile rispetto a configurare il timeout solo per quel singolo test perché:
Build status: ✅ Una volta applicato questo fix, il build #163 dovrebbe passare.