mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
6 lines
113 B
JavaScript
6 lines
113 B
JavaScript
describe('App Layout', () => {
|
|
it('contains a navbar', () => {
|
|
cy.visit('/');
|
|
cy.get('nav');
|
|
});
|
|
});
|