From c7482300a1dcd9478fa26b62b8ecf2c06c5809c0 Mon Sep 17 00:00:00 2001 From: Brandon Murray Date: Sat, 13 Sep 2025 09:04:15 -0600 Subject: [PATCH 1/4] show diffs --- tutorial-cypress/cypress/e2e/examples/applitools.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial-cypress/cypress/e2e/examples/applitools.spec.js b/tutorial-cypress/cypress/e2e/examples/applitools.spec.js index 86ef5ce..acb6482 100644 --- a/tutorial-cypress/cypress/e2e/examples/applitools.spec.js +++ b/tutorial-cypress/cypress/e2e/examples/applitools.spec.js @@ -5,7 +5,7 @@ Cypress.on('uncaught:exception', (err, runnable) => { }); describe('Hello Cypress, This is Applitools', () => { it('works', () => { - cy.visit('https://demo.applitools.com/loginBefore.html') + cy.visit('https://demo.applitools.com/loginAfter.html') cy.eyesOpen({ appName: 'Demo', testName: 'Login' From 878a30bb212ff88b65d230f109bd68bd83c841a4 Mon Sep 17 00:00:00 2001 From: Brandon Murray Date: Sat, 13 Sep 2025 09:10:58 -0600 Subject: [PATCH 2/4] fix sha --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a948a52..aefcb70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: - master # Triggers on pushes to the master branch env: APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} - APPLITOOLS_BATCH_ID: ${{ github.event.pull_request.head.sha }} + APPLITOOLS_BATCH_ID: ${{ github.event.pull_request.head.sha }} || ${{ github.sha }} jobs: run-tests: From 619c0cfaf4dbf983b2215c42de6c374cac747555 Mon Sep 17 00:00:00 2001 From: Brandon Murray Date: Sat, 13 Sep 2025 09:21:32 -0600 Subject: [PATCH 3/4] fix sha --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aefcb70..737fc17 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: - master # Triggers on pushes to the master branch env: APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }} - APPLITOOLS_BATCH_ID: ${{ github.event.pull_request.head.sha }} || ${{ github.sha }} + APPLITOOLS_BATCH_ID: ${{ github.event.pull_request.head.sha || github.sha }} jobs: run-tests: From 40897c48bb66d7f801816bc42093135fd82fce8f Mon Sep 17 00:00:00 2001 From: Brandon Murray Date: Sat, 13 Sep 2025 09:24:21 -0600 Subject: [PATCH 4/4] reset --- tutorial-cypress/cypress/e2e/examples/applitools.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial-cypress/cypress/e2e/examples/applitools.spec.js b/tutorial-cypress/cypress/e2e/examples/applitools.spec.js index acb6482..86ef5ce 100644 --- a/tutorial-cypress/cypress/e2e/examples/applitools.spec.js +++ b/tutorial-cypress/cypress/e2e/examples/applitools.spec.js @@ -5,7 +5,7 @@ Cypress.on('uncaught:exception', (err, runnable) => { }); describe('Hello Cypress, This is Applitools', () => { it('works', () => { - cy.visit('https://demo.applitools.com/loginAfter.html') + cy.visit('https://demo.applitools.com/loginBefore.html') cy.eyesOpen({ appName: 'Demo', testName: 'Login'