mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-06 02:36:39 +00:00
* 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
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
describe('Landing page', () => {
|
|
it('contains app name', () => {
|
|
cy.visit('/');
|
|
cy.get('h1').contains('DevBook');
|
|
});
|
|
});
|