Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add percy integration #124

Open
wants to merge 39 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
dcc5b46
update cypress
dpatil-magento Oct 7, 2024
31b6f6f
update
dpatil-magento Oct 7, 2024
bff6872
update
dpatil-magento Oct 7, 2024
0ea3671
update
dpatil-magento Oct 7, 2024
b35da53
update
dpatil-magento Oct 7, 2024
8c57e75
update
dpatil-magento Oct 7, 2024
21d57cd
update
dpatil-magento Oct 7, 2024
335e48c
update
dpatil-magento Oct 7, 2024
bb290fc
update
dpatil-magento Oct 7, 2024
7063664
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 8, 2024
4bb784a
update
dpatil-magento Oct 16, 2024
804404e
test
dpatil-magento Oct 16, 2024
bccf626
update
dpatil-magento Oct 16, 2024
0dc6d66
update
dpatil-magento Oct 16, 2024
77be458
update
dpatil-magento Oct 16, 2024
d293de0
update
dpatil-magento Oct 16, 2024
572f8f4
fix mobile screen with percy
dpatil-magento Oct 16, 2024
dbd46a3
update
dpatil-magento Oct 16, 2024
7d59d23
recheck
dpatil-magento Oct 16, 2024
be52271
check mobile view fix
dpatil-magento Oct 16, 2024
674c544
update
dpatil-magento Oct 16, 2024
ae4104c
update
dpatil-magento Oct 16, 2024
4f0390c
test
dpatil-magento Oct 16, 2024
4e11e09
update
dpatil-magento Oct 16, 2024
d900c75
update
dpatil-magento Oct 16, 2024
9168ebd
disable mobile
dpatil-magento Oct 17, 2024
d20bf6e
update
dpatil-magento Oct 17, 2024
01d182d
avoid duplicating
dpatil-magento Oct 17, 2024
098b084
update
dpatil-magento Oct 17, 2024
09b5057
cleanup
dpatil-magento Oct 17, 2024
220a3f0
Check stability 1
dpatil-magento Oct 17, 2024
8af1fa2
Check stability 2
dpatil-magento Oct 17, 2024
5eaf1c4
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 17, 2024
b97a8db
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 17, 2024
4984a8b
fix missed conflict
dpatil-magento Oct 17, 2024
8cdc92a
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 17, 2024
1a19f9d
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 17, 2024
bd435fc
update
dpatil-magento Oct 17, 2024
1d01aff
Merge branch 'develop' into percy-demo-new
dpatil-magento Oct 17, 2024
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
Prev Previous commit
Next Next commit
test
  • Loading branch information
dpatil-magento committed Oct 16, 2024
commit 4f0390c352402c6d48e9f8c619cefd6eab4fd5be
4 changes: 2 additions & 2 deletions cypress/src/tests/e2eTests/verifyLowStockInfoMessage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ describe('Verify stock notification message', () => {
cy.contains('Add to Cart').click();
cy.contains('The requested qty exceeds the maximum qty allowed in shopping cart').should('be.visible');
cy.get('.nav-search-button').should('be.visible');
let domTransformation = 'document.getElementById("nav").setAttribute("aria-expanded", false)';
cy.get('[aria-label="Close navigation"]').click({force: true});
cy
.viewport('iphone-x')
.percySnapshot('PDP page with Low Stock Notifiction Updated', { width: 375, domTransformation })
.percySnapshot('PDP page with Low Stock Notifiction Updated', { width: 375 })
.viewport(1280, 1024)
.percySnapshot('PDP page with Low Stock Notifiction Updated', { width: 1280 });
});
Expand Down
Loading