6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
|
describe('Smoke Test', () => {
|
||
|
it('can view the home page', () => {
|
||
|
cy.visit('/');
|
||
|
cy.contains('Learn React');
|
||
|
})
|
||
|
})
|