mirobo

Results 29 comments of mirobo

Wouldn't it be an option to let the plugin execute this command instead? `npx cypress run --headed --e2e --browser chrome --config specPattern="/Users/tnrich/Sites/openVectorEditor/cypress/e2e/tabs.spec.js"` or maybe with added "--no-exit" so the UI...

Ahh, I see. Well I have to join the Cypress' dev point of view in case of the issue #3665 :-P (I don't see that much value in having "watchForFileChanges"...

> Hey @mirobo. Thanks for submitting this pull request to fix your issue! Would you be able to add a test in `firefox_spec.ts` that covers the expected behavior? The existing...

**Update** Just after writing this I pulled from develop again and I was able to run "yarn dev". Holy moly :-) Let's see how long this holds up :D >...

Back to a problem I already had and never got resolved: It starts a Cypress.exe in the background but it is said that system-tests should not generally required a Cypress.exe...

> > Yes, I followed the guide > > NPM 8.11.0 Node 16.16.0 (also tried with 16.14.2) Yarn: v1.22.19 > > What version of Windows are you running? It is...

> unfortunately didn't get a chance to look at this over the weekend, but hoping this afternoon to see if I yield similar results I'll try it also on an...

> > unfortunately didn't get a chance to look at this over the weekend, but hoping this afternoon to see if I yield similar results > > I'll try it...

> Looks great and tests great, thank you for your contribution! Huge thanks to @AtofStryker!

Workaround Cypress 9.7.0 on Windows (don't know how Mac behaves here): ``` on('before:browser:launch', (browser, launchOptions) => { if (browser.name === 'firefox') { launchOptions.preferences['browser.download.dir'] = `${path .join(__dirname, `../../cypress/downloads`) .replaceAll('\\', '\\\\')}`; }...