Files
taskview-community/web__old/cypress/e2e/example.cy.ts
T
2026-02-21 18:26:35 +01:00

9 lines
207 B
TypeScript

// https://docs.cypress.io/api/introduction/api.html
describe('My First Test', () => {
it('visits the app root url', () => {
cy.visit('/');
cy.contains('h1', 'You did it!');
});
});