1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 06:25:53 +02:00
.profile/cypress/e2e/pages/index.cy.ts

19 lines
456 B
TypeScript
Raw Normal View History

2021-08-13 15:48:29 +02:00
describe('Page /', () => {
2022-09-04 20:40:58 +02:00
beforeEach(() => {
return cy.visit('/')
})
2021-08-13 15:48:29 +02:00
it('should reveals the sections while scrolling except the about section', () => {
2022-10-27 19:13:29 +02:00
const sectionsReveals = ['#interests', '#skills', '#portfolio']
2021-08-13 15:48:29 +02:00
cy.get('#about').should('be.visible')
for (const section of sectionsReveals) {
cy.get(section)
.should('not.be.visible')
.scrollIntoView()
.should('be.visible')
}
})
})
export {}