Murat K Ozcan

Results 23 comments of Murat K Ozcan

> Yes, changing the import in `cypress/support/component.js` > > ```js > // From > import {mount} from 'cypress/react' > > // To > import {mount} from 'cypress/react18' > ``` >...

> Thanks a ton for giving it a try. On main, with React 17, the local run time is about 12 mins. In CI it is all right, under 4...

> #23104 I tried `experimentalSingleTabRunMode` , React 18, and the new hooks with v10.6.0. Ran out of parallelization while wrestling the changes, but got one last run https://dashboard.cypress.io/projects/62pyqm/runs/991/specs. The parallel...

Confirmed. 1.8.15 addresses it https://github.com/muratkeremozcan/cy-react-component-test-examples/actions/runs/2576451291. Here's the 1.8.16 run with debug: https://github.com/muratkeremozcan/multi-stage-caching/runs/7092543067?check_suite_focus=true#step:4:63. next, since it complained about zstd, I worked around that by installing zstd, which uncovered this https://github.com/muratkeremozcan/multi-stage-caching/runs/7092638284?check_suite_focus=true#step:5:70 Error:...

> on mac so I did this and so far so good: > http://dev.topheman.com/install-nvm-with-homebrew-to-use-multiple-versions-of-node-and-iojs-easily/ Using node version 8 to be precise. `nvm use 8`

> ![image](https://user-images.githubusercontent.com/70687062/103192252-3e5d5b80-4902-11eb-8cca-6d39ca9a2679.png) > > It says that Classic styles are no longer supported and linked me to this webpage to change come configuration. In which file should I change the...

TL, DR; The speed is great Try node --test on smaller new projects Do not port existing tests yet Re-evaluate in 6 months

From @conversaShawn "Thanks for reporting Murat. The current workaround is to use a specific version as you did or use one of Cypress images: https://github.com/cypress-io/cypress-docker-images/tree/master/browsers Currently, this typically happens whenever...

> it will be nice to mounting react component runtime so that user can update states and props runtime. Something like: > > ```js > cy.getReact().setProps({}) > > cy.getReact().setState({}); >...