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

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

This PR contains the following updates:

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

Release Notes

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

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-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 (@&#8203;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 - [#&#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:16:08 +01:00
chore(deps): update dependency @storybook/addon-docs to v10.2.18
Some checks failed
continuous-integration/drone/pr Build is failing
d0a6a450c5
Owner

🔴 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:

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.

## 🔴 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.
bea added 1 commit 2026-03-13 22:59:33 +01:00
fix(tests): increase testTimeout to 10000ms for slow CI environment
All checks were successful
continuous-integration/drone/pr Build is passing
2d6b972533
bea merged commit bc7dc3a2a1 into main 2026-03-13 23:04:36 +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#33