Develliot

Results 22 comments of Develliot

@jaredpalmer +1 for this We might have to update this again very soon because Cypress 7 is going to come out soon and we will be 3 major versions behind,...

Inside commands I skip snapshots if I am in interactive mode so it only takes snapshots in docker command.js: ``` if (Cypress.config('isInteractive')) { Cypress.Commands.add('matchImageSnapshot', () => { cy.log('Skipping snapshot'); });...

I'm running these tests on a docker instance with the latest cypress/included: images that cypress maintain without any issues.

It didn't fix it for me because I think ^4.5.0 is only going to cover minor version in v4, I think the package.json needs a range of stable major versions...

I'm on 9.4.1 and I'm still getting ``` Error: EACCES: permission denied, mkdir '/root/.config/Cypress/cy/production/proxy' ``` I believe it is running in root, when I run it as user 'node' I...

~~This might be a node 14 only error~~, when I update to node 16, I get a different error, this happens across all jobs not just the cypress one. ```EACCES:...

I have got further but still no cigar. So the main issue: ``` Error: EACCES: permission denied, mkdir '/root/.config/Cypress/cy/production/proxy' ``` I never see locally I only see on github actions...

I've just had a look at the generated docker files for cypress/included:9.4.1 and anything before cypress/included:9.0.0. so 8.7 and under where this issue doesn't exist and the only difference I...

Ah ha! A colleague figured it out, it's when the host machine is Ubuntu which is what GitHub Actions uses and I assume other CI products also. You need to...