Chris Breiding

Results 63 comments of Chris Breiding

Glad to hear it's working in your tests. I'm going to close this as it seems to no longer be an issue.

Replacing `parent` with `self` is used to prevent frame-busting, since Cypress runs your application in an iframe. Without it, any sites that have frame-busting can't run in Cypress since they...

I've been looking into this and it seems that webkit has issues with the hostname being `localhost` that may be causing requests not to go through Cypress's proxy. I don't...

Sorry you're encountering this issue. Do you have `experimentalModifyObstructiveThirdPartyCode` set to `true` in your `cypress.config.ts`?

I replicated this issue and will forward it to the appropriate team. They will evaluate the priority of this ticket and consider their capacity to pick it up. Please note...

`log: false` keeps the [`cy.log()` call](https://docs.cypress.io/api/commands/task#Arguments) from logging to the Cypress command log. It has no effect on the code coverage logging. Would need to add an option to prevent...

Right now there doesn't seem to be enough information to reproduce the problem on our end. Unless we receive a reliable reproduction, we'll eventually have to close this issue until...

I'm going close this since there still isn't a reproduction we can use to debug it. Please comment with a minimal reproduction and we can re-open this.

I can see how this is confusing. It's not necessarily a bug, but a terminology issue. Cypress considers a **pending** test to be any of the following: * `it.skip()`, `context.skip`,...

Right, my bad. The first test will be failed, the subsequent ones will be skipped. > I want to skip test and have all other tests with "green light" -...