Skip to content

Commit

Permalink
chore(tests): fix flaky cypress tests (#19725)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin committed May 1, 2024
1 parent 0825e2d commit fcc921c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('VSlideGroup', () => {
cy.get('.v-card').eq(3).click().should('have.class', 'bg-primary')
})

// TODO: fails in headloss mode
// TODO: fails in headless mode
it.skip('should disable affixes when appropriate', () => {
cy.mount(() => (
<Application>
Expand Down Expand Up @@ -81,7 +81,8 @@ describe('VSlideGroup', () => {
))

cy.get('.v-slide-group__next').should('exist').should('have.text', 'next').click()
cy.get('.v-slide-group__prev').should('exist').should('have.text', 'prev').click()
// on CI pointer-events still with none, we just force the click to avoid CI issues
cy.get('.v-slide-group__prev').should('exist').should('have.text', 'prev').click({ force: true })
})

it('should always showArrows', () => {
Expand Down
16 changes: 5 additions & 11 deletions packages/vuetify/src/composables/__tests__/goto.spec.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('goto', () => {
))
.get('#top').click()
.window().should(win => {
expect(win.scrollY).to.equal(1223)
expect(Math.ceil(win.scrollY)).to.equal(1223)
})
.get('#bottom').click()
.window().should(win => {
Expand All @@ -81,15 +81,9 @@ describe('goto', () => {
<ComponentB id="end" target="#start" container="parent" style="margin-inline-start: 2000px;" />
</div>
))
.get('#start').click()
.wait(500)
.get('#container').then($el => {
expect($el[0].scrollLeft).to.equal(975)
})
.get('#end').click()
.wait(500)
.get('#container').then($el => {
expect($el[0].scrollLeft).to.equal(0)
})
.get('#start').click().wait(500)
.get('#end').should('be.visible')
.get('#end').click().wait(500)
.get('#start').should('be.visible')
})
})

0 comments on commit fcc921c

Please sign in to comment.