Amir Tugendhaft
Amir Tugendhaft
Ooo sounds neat. I'd definitely wan't this in my pipeline. Aren't the `expect`s standalone, and don't relate to any testing lib? How can we put the the link in that...
I managed to find a workaround for now, and to add `tags: ['a11y-skip']` directly to the story, and not in the component meta. Seems like I was wrong about the...
How about ```tsx export default { title: 'Components/Calendar', component: Calendar, subcomponents: { CalendarLegend: { component: CalendarLegend, argTypes: { label: { control: 'input' }, }, }, }, argTypes: { onSelect: {...
Is there any progress with this?
Funny thing is that this setup worked fined when using `jest` and `react-scripts`, and also when I replaced `jest` with `vitest` but still kept `react-scripts`. I truly wonder what is...
Having the same issue. Trying to make a workaround with adding a `` or something. Would be nice to have support from the lib.
What is the desired functionality? How do we allow flexibility with 0 configuration here? 🤔
Hi! Well, I'm not sure about the address here as I'm not sure where you're trying to run this (locally, or on the cloud?). Anyway - my suggestion (at least...
Thanks. It's exactly what we have done. Works great :)
Managed to fix the issue. Seems like it relied in `axe-playwright` which is what the official Storybook docs suggest. I replaced it with [`@axe-core/playwright`](https://playwright.dev/docs/accessibility-testing) and configured it almost the same...