Skip to content
Open

Q1 #101

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: CI
on:
pull_request:
merge_group:
push:
branches:
- 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:
Expand Down
2 changes: 1 addition & 1 deletion tutorial-cypress/cypress/e2e/examples/applitools.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('Hello Cypress, This is Applitools', () => {
it('works', () => {
cy.visit('https://demo.applitools.com/loginBefore.html')
cy.eyesOpen({
appName: 'Optum',
appName: 'Demo',
testName: 'Login'
});
//cy.contains('?diff1').click();
Expand Down
Loading