Check More Things Before Clicking

1 · Gleb Bahmutov · May 11, 2022, 12:06 p.m.
I have my Cypress.tips site with my Cypress courses page. It needs some end-to-end tests. Since Cypress v9.6.0 came out, I had no problem logging in using 3rd party authentication provider, see the video Instant Application Login Via External Domain Using cy.session And cy.origin Commands.For testing on CI I used my favorite GitHub Actions. Here is the GitHub workflow file:.github/workflows/ci.yml123456789101112131415name: cion: pushjobs: test: runs-on: ubuntu-20.04 steps: - name: Ch...