mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
specify landing must show app name
This commit is contained in:
parent
262d4e1934
commit
6c1b4b4db6
2 changed files with 6 additions and 6 deletions
6
cypress/integration/landing.spec.js
Normal file
6
cypress/integration/landing.spec.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
describe('Landing page', () => {
|
||||
it('contains app name', () => {
|
||||
cy.visit('/');
|
||||
cy.get('h1').contains('DevBook');
|
||||
});
|
||||
});
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
describe('smoke', () => {
|
||||
it('sees learn', () => {
|
||||
cy.visit('/');
|
||||
cy.get('a').contains('Learn');
|
||||
});
|
||||
});
|
||||
Loading…
Reference in a new issue