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