import { getGreeting } from '../support/app.po'; describe('global-form', () => { beforeEach(() => cy.visit('/')); it('should display welcome message', () => { getGreeting().contains('Welcome to global-form!'); }); });