cypress-svelte-unit-test
cypress-svelte-unit-test copied to clipboard
Unit testing Svelte components in Cypress E2E test runner
Is there a plan to support `cypress@7` which has the native component tester? If so, can the readme be updated with info how to setup with cypress@7? Thank you
Thank you for taking time to open a new issue. Please answer a few questions to help us fix it faster. You can delete text that is irrelevant to the...
confirmed this change makes our 34 svelte component tests work
This allows use with cypress 7. there are several things of note here * cypress seems to have removed `rollup-dev-server` so this is webpack (or vite) only for now *...
Hi, I cannot seem to find a way to test component slots. The examples in the readme seem outdated since I cannot seem to make them work. Can you please...
In https://github.com/bahmutov/svelte-ts-example
### Is this a bug report or a feature request? A little of both #### If this is a new feature request, please describe it below We have a [`use:action`](https://svelte.dev/docs#use_action)...
Hello, the issue concerns order of code execution. As i understand CSS files should be loaded before creating component. Actually they are loaded after(code after injectStylesBeforeElement(index file) function is executed...
If there exists a CSS rollup config that separates the associated CSS into another file (as is done in default rollup template https://github.com/sveltejs/template/blob/master/rollup.config.js#L23-L25), the tests won't have access to the...
I'm loading whole app into Cypress. I route pages of app with `url` prop for example: ``` it('Homepage', () => { mount(App, { props: { url: '/', }, }, {...