Initial commit

This commit is contained in:
2026-04-04 15:02:50 +02:00
commit b943dc2344
52 changed files with 2750 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// https://on.cypress.io/api
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'You did it!')
})
})