Yann Braga

Results 295 comments of Yann Braga

Hey @AmirTugi thanks a lot for elaborating, but could you please provide a reproduction repo? You can use https://storybook.new for a minimal repro setting. I tried the test-runner with Storybook...

@kasperpeulen would you mind taking a look at this once you have the time?

Hey @boonya thanks a lot for flagging this! Would you be open to making a PR that fixes it? Thanks!

Hey there @artaommahe the issue is related to your [set up file](https://github.com/artaommahe/test-storybook-a11y-tests/blob/main/.storybook/vitest.setup.ts#L7): ``` setProjectAnnotations([projectAnnotations, addonA11y]) ``` The a11y annotations have to be put first. This is automatically set up for...

@shilman I investigated the issue and the behavior seems to be correct. The automigrations are only conditionally applied (based on version ranges) if the user is upgrading. The logic for...

I'll be closing this issue as it's not applicable anymore.

I'm not even sure if it is possible to simulate these variables 🤔

Hey there @JesusTheHun thanks for reporting this. Also thanks for setting up a repro! This is actually not a bug, it's how it's intended to work. Storybook has the concept...

Question: How would the following code work in a docs page? ```js const HelloStory = { play: async () => { userEvent.type(screen.getByRole('textbox'), 'Hello, World!') } } const GoodbyeStory = {...

> Is this included in 7.0? Great question! Yes, the play function works in MDX, however does not run by defualt. You can try it out with the `Story` block...