Goal-Calibration/cypress/e2e/spec.cy.js
2026-03-21 21:11:38 +02:00

6 lines
159 B
JavaScript

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