6 lines
128 B
JavaScript
Raw Normal View History

2024-04-24 07:56:50 -04:00
describe('Smoke Test', () => {
it('can view the home page', () => {
cy.visit('/');
cy.contains('Learn React');
})
})