Files
establo/frontend/cypress/e2e/1_general/first_page.cy.js
2024-08-13 16:46:44 -04:00

16 lines
215 B
JavaScript

/// <reference types="cypress" />
describe('example to-do app', () => {
beforeEach(() => {
cy.visit('http://localhost:5173')
})
it('Test Name', () => {
cy.get('.nav').contains('HERDE')
})
})