setup Example Vue app

refs #31
This commit is contained in:
Thomas Peetz
2025-08-02 12:07:19 +02:00
parent 6201e433ae
commit 427850bd64
39 changed files with 6262 additions and 8659 deletions
+8
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!')
})
})