Files
pokdedemo/cypress/e2e/Pokedemo/app-component.cy.js
2025-01-01 15:16:24 +01:00

14 lines
273 B
JavaScript

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')
})
})