Manuel

Results 150 comments of Manuel
trafficstars

I have never worked with this tool before, do I understand that correctly that it will only be useful for the svelte experience. It should not be necessary in `kit`...

To provide some more context: In some cases, it's necessary to initialize some tools / data before each test runs. From time to time, we will also need to provide...

Blocked by #461

@benmccann This is apparently not the case, or it's still not working as expected. See #393, or better my [small repro workflow run](https://github.com/manuel3108/storybook-missing-packages-repro/actions/runs/9503757087/job/26194895861), which clearly shows that 8.1.8 is used,...

See #393 In summary, `8.2.5` fixes some issues, but introduces other. As the currently published way is broken, let's still use `next` for now. Leaving this issue open for the...

They also fixed https://github.com/storybookjs/storybook/issues/28474 and https://github.com/storybookjs/storybook/issues/28475 which were happening on the latest 8.2 beta build. But they managed to re-introduce https://github.com/storybookjs/storybook/issues/27096, which again disappears when using `next` ([`8.3.0-alpha.0`](https://www.npmjs.com/package/storybook/v/8.3.0-alpha.0)). They must...

Just had a look locally, and 8.2.5 is still not working as it should. The currently published implementation is broken, so let's use the next version to make it much...

Don't have an opinion, as component testing is nothing I have ever been in touch with.

> `as-types` is [`Esprima`](https://github.com/jquery/esprima) specification compatible. > Meanwhile both `acorn` and `typescript-acorn` uses `EStree` specification. And also Svelte with `parse`/`compile` functions. > > I don't have experience with `Esprima`, at...

Regarding the `ast-types` thing, this [`@typescript-eslint/types`](https://www.npmjs.com/package/@typescript-eslint/types?activeTab=readme) could be the solution. Seems to be providing correct intellisense. Will give it a shot ```js /** @param {import('@typescript-eslint/types').TSESTree.FunctionDeclaration} test */ ```