high-holiday-75305
02/22/2023, 2:23 PMyarn build. Then, in my bug reproduction project, I switched the Cypress version in package.json from a normal published version to point into the local pre-release build ("cypress": "file:../cypress/cli/build"). When I run an npm install in the reproduction repo, I get a message saying Warning: You are installing a pre-release build of Cypress., which is fair, but then the install fails with Error: Failed downloading the Cypress binary.. The URL it's saying it tried is https://cdn.cypress.io/beta/binary/12.6.0/darwin-x64/develop-49fdb6bbf1aba86728c219e6b4c04a41299a23d1/cypress.zip, which seems to legitimately be a 404, probably because the hash is of something that isn't a published binary. Does anyone know if it's possible to get this binary installation step to succeed in local development?wonderful-match-15836
02/22/2023, 3:44 PMyarn dev at the root of the Cypress repo will append the --global flag which opens Cypress in global mode. This lets you choose to open any Cypress project on your machine from the running version of Cypress, without having to modify the project at all. Then you could run your tests with your bugfix applied and see how it goes.
Unless you think the behavior would be different in the binary, or something, which seems unlikely for the issue you linked.high-holiday-75305
02/22/2023, 3:46 PMhigh-holiday-75305
02/22/2023, 6:44 PMhigh-holiday-75305
02/22/2023, 6:45 PMwonderful-match-15836
02/22/2023, 6:46 PMhigh-holiday-75305
02/22/2023, 6:47 PMhigh-holiday-75305
02/22/2023, 6:47 PMhigh-holiday-75305
02/22/2023, 6:47 PMwonderful-match-15836
02/22/2023, 7:37 PMhigh-holiday-75305
02/22/2023, 8:16 PMhigh-holiday-75305
02/22/2023, 8:17 PMhigh-holiday-75305
02/22/2023, 8:18 PM