Jesse Zhang
Jesse Zhang
I can submit a PR for this if the fix I had above seems reasonable
if i'm correct, an alternative solution here is to change the file extensions of everything under `esm` to `.mjs` (and update `package.json` accordingly) for now, i'm working around this by...
I just experimented with this a bit. I'm using the express adapter and noticed going through [the code here](https://github.com/BuilderIO/qwik/blob/main/packages/qwik-city/adapters/shared/vite/index.ts#L138) that if I have an ssg config: ``` expressAdapter({ ssg: {...
@manucorporat is there any interest in adding cypress? i've added this for my project and have managed to do some things with global-agent http proxy to get SSR utilizing cypress...
Verified that this is an issue from 0.10.0, 0.11.1, and 0.12.1. I'm not sure if it goes even further back.
Simple workaround for now is to not reassign properties from props and pass them directly into the child components instead.
we just ran into the same issue using cypress 11.2.0 and testing-library/cypress 8.0.7. reverting it back to 7.0.7 per above suggestions seems to have worked as well. the `cy.findByRole` and...
i added this: ```typescript before(() => { cy.configureCypressTestingLibrary({ getElementError(message, container) { const error = new Error( [message, container.tagName].filter(Boolean).join('\n\n'), ); error.name = 'TestingLibraryElementError'; return error; }, }); }); ``` to prevent...