Gleb Bahmutov

Results 551 comments of Gleb Bahmutov

what happens if you use single quotes around the spec wildcard? ``` npx cypress run --spec 'cypress/integration/ATMSTests/**' ```

Looking just at the exit code it seems close to #3958 which is hard to debug without being able to execute the code

So it might be something crashing the electron on exit. Can you try newer Cypress versions Sent from my iPhone > On Jan 5, 2021, at 13:45, Muhammadehsan2019 wrote: >...

@lukemadera have you tried using `DEBUG` variable to see messages from Cypress? https://docs.cypress.io/guides/guides/debugging.html#Debug-the-Command-Line

For everyone who wants to get the `cy.log` and other Cypress commands this might be helpful https://github.com/bahmutov/cypress-failed-log

it seems to me, the svelte loader is going wrong - can you run it with `cypress open`?

I think it would be nice to do what the request header matching does - you just need one of the headers to match. I often use it to stub...

I strongly suggest NOT going down the path "real world requires running spec files in order". It is just JavaScript and you can easily set state before each test the...

@dwelle I think you better use `testFiles` or `--spec` to select the spec files you want to run on CI, no need to remove others. Also pick the tests to...