mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
// https://docs.cypress.io/api/introduction/api.html
|
|
|
|
describe('My First Test', () => {
|
|
it('Visits the app root url', () => {
|
|
cy.visit('/');
|
|
cy.contains('h1', 'Welcome to Your Vue.js + TypeScript App');
|
|
});
|
|
});
|