specify landing must show app name

This commit is contained in:
Ruidy Nemausat 2020-05-12 10:29:51 +02:00
parent 262d4e1934
commit 6c1b4b4db6
2 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,6 @@
describe('Landing page', () => {
it('contains app name', () => {
cy.visit('/');
cy.get('h1').contains('DevBook');
});
});

View file

@ -1,6 +0,0 @@
describe('smoke', () => {
it('sees learn', () => {
cy.visit('/');
cy.get('a').contains('Learn');
});
});