mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
13 lines
284 B
JavaScript
13 lines
284 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');
|
|
});
|
|
});
|