blob: 06ac3e62404f61b8ce51fa1b18439c259cfb72b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
describe('Back to top', () => {
it('show a back to top button when scrolling', async () => {
cy.visit('/');
cy.findByRole('link', { name: /Retour en haut de page/i }).should(
'not.be.visible'
);
// See @components/templates/layout/layout.tsx for scroll position.
cy.scrollTo(0, 300);
cy.findByRole('link', { name: /Retour en haut de page/i }).should(
'be.visible'
);
});
});
|