mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-23 11:03:20 +00:00
9 lines
207 B
TypeScript
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!');
|
|
});
|
|
});
|