first commit

This commit is contained in:
kanyarat2001 2023-12-13 10:09:04 +07:00
commit 6e3c1a90f7
31 changed files with 14083 additions and 0 deletions

View file

@ -0,0 +1,8 @@
// 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!')
})
})