describe('AppComponent', () => { beforeEach(() => { cy.visit('http://localhost:4200') }) it('should display title', () => { cy.get('h1').should('contain', 'pokedemo!') }) it('should load the page', () => { cy.get('app-root').should('exist') }) })