You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
19 lines
413 B
4 years ago
|
describe('Sapper template app', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.visit('/')
|
||
|
});
|
||
|
|
||
|
it('has the correct <h1>', () => {
|
||
|
cy.contains('h1', 'Great success!')
|
||
|
});
|
||
|
|
||
|
it('navigates to /about', () => {
|
||
|
cy.get('nav a').contains('about').click();
|
||
|
cy.url().should('include', '/about');
|
||
|
});
|
||
|
|
||
|
it('navigates to /blog', () => {
|
||
|
cy.get('nav a').contains('blog').click();
|
||
|
cy.url().should('include', '/blog');
|
||
|
});
|
||
|
});
|