6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
it('titles are correct', () => {
|
|
const page = cy.visit('http://localhost:3000');
|
|
|
|
page.get('h1').should('have.text', 'Welcome to Astro');
|
|
})
|