mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
![]() |
// https://docs.cypress.io/api/introduction/api.html
|
||
|
|
||
|
describe('My First Test', () => {
|
||
|
it('visits the app root url', () => {
|
||
|
cy.visit('/')
|
||
|
cy.contains('h1', 'You did it!')
|
||
|
})
|
||
|
})
|