Skip to content

Commit

Permalink
fix marketplace tests now that per page/load more limits are in place
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Aug 24, 2023
1 parent 3200117 commit 21bcd8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cypress/integration/marketplace.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe('Marketplace Page', function () {
it('Category Tab Filters properly', () => {

cy.get( appClass + '-app-subnavitem-Services').click();
cy.get('.marketplace-item').should('have.length', 14);
cy.get('.marketplace-item').should('have.length', 12);
cy.get('#marketplace-item-1fc92f8a-bb9f-47c8-9808-aab9c82d6bf2 h3')
.scrollIntoView()
.should('be.visible')
Expand All @@ -94,7 +94,7 @@ describe('Marketplace Page', function () {
.should('have.text', 'Yoast Premium');
});

it.skip('Load more button loads more products', () => {
it('Load more button loads more products', () => {
cy.get( appClass + '-app-subnavitem-Services').click();
cy.wait(300);

Expand Down

0 comments on commit 21bcd8d

Please sign in to comment.