16 lines
215 B
JavaScript
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')
|
|
})
|
|
|
|
|
|
|
|
})
|