mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
23 lines
485 B
JavaScript
23 lines
485 B
JavaScript
import * as ROUTES from '../../src/constants/routes';
|
|
|
|
describe('App Router', () => {
|
|
it('contains Landing page', () => {
|
|
cy.visit(ROUTES.LANDING);
|
|
cy.get('section');
|
|
});
|
|
|
|
it('contains SignUp page', () => {
|
|
cy.visit(ROUTES.SIGN_UP);
|
|
cy.get('section');
|
|
});
|
|
|
|
it('contains SignIn page', () => {
|
|
cy.visit(ROUTES.SIGN_IN);
|
|
cy.get('section');
|
|
});
|
|
|
|
it('contains Developers page', () => {
|
|
cy.visit(ROUTES.DEVELOPERS);
|
|
cy.get('section');
|
|
});
|
|
});
|