mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08: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');
|
||
|
});
|
||
|
});
|