Martin Poole

Results 37 comments of Martin Poole

I am using Cypress for React based component testing and cannot get it to work in parallel. I think what happens is that Webpack is launched for each thread and,...

Quick update on above for anyone who has similar problem. I was able to fix shortly after typing the above! I needed to remove a hard coded port value from...

I have encountered this issue today when trying to use the orb with Percy and the @Percy/CLI package. It includes await syntax which breaks the orb. The orb needs to...

@admah using the latest 2.1.0 It still seems to be limited to node 10. So no way to use in conjunction with Percy

Thanks @admah I will test once merged. Will I just need to use a new orb version number?

@admah seeing same issue still. Do I need to update the circleCI config to specify a new orb version?

Great thanks @admah

@admah thanks for this, unfortunately getting same error with 2.2.0 ``` > [email protected] postinstall /root/project/node_modules/core-js-pure > node -e "try{require('./postinstall')}catch(e){}" > @percy/[email protected] postinstall /root/project/node_modules/@percy/core > node ./post-install (node:127) ExperimentalWarning: The ESM...

Thanks @admah this is the config with executor (thought only applied to what Cypress uses as browser): ``` version: 2.1 orbs: sonarcloud: sonarsource/[email protected] cypress: cypress-io/[email protected] executors: with-chrome: docker: - image:...

Further update. I managed to get this to work now but had to apply a different approach to what is outlined in your documentation for the orb. As a command-prefix...