diff options
Diffstat (limited to 'tests/cypress/e2e/pages/cv.cy.ts')
| -rw-r--r-- | tests/cypress/e2e/pages/cv.cy.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/cypress/e2e/pages/cv.cy.ts b/tests/cypress/e2e/pages/cv.cy.ts index 419a098..13b937f 100644 --- a/tests/cypress/e2e/pages/cv.cy.ts +++ b/tests/cypress/e2e/pages/cv.cy.ts @@ -1,6 +1,8 @@ +import { ROUTES } from '../../../../src/utils/constants'; + describe('CV Page', () => { it('successfully loads', () => { - cy.visit('/cv'); + cy.visit(ROUTES.CV); cy.findByRole('heading', { level: 1 }).contains('CV'); }); }); |
