install cypress

This commit is contained in:
Yisroel Baum 2026-03-21 21:11:06 +02:00
parent 6cf93426eb
commit 00d66b5347
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
5 changed files with 64 additions and 0 deletions

6
cypress/e2e/spec.cy.js Normal file
View file

@ -0,0 +1,6 @@
describe('My First Test', () => {
it('Visits the Kitchen Sink', () => {
cy.visit('https://example.cypress.io')
cy.contains('type').click()
})
})