add Cypress

This commit is contained in:
Антон
2024-08-22 07:00:57 +03:00
parent 34d0ac9d18
commit 1b805bf1be
13 changed files with 1434 additions and 339 deletions

6
cypress/e2e/spec.cy.ts Normal file
View File

@ -0,0 +1,6 @@
describe('My First Test', () => {
it('Visits the initial project page', () => {
cy.visit('/')
cy.contains('app is running')
})
})