devbook_ts/cypress/integration/landing.spec.js
Ruidy ef6d97f2fc
Create and style Landing page (#2)
* readme

* specify landing must show app name

* clean default project

* write landing page layout

* add static assets for styling

* add Landing page unit test
install fontawesome
2020-05-12 11:09:51 +02:00

6 lines
134 B
JavaScript

describe('Landing page', () => {
it('contains app name', () => {
cy.visit('/');
cy.get('h1').contains('DevBook');
});
});