This commit is contained in:
2025-01-01 15:16:24 +01:00
parent a9bf3781e0
commit 14cdc06de5
18 changed files with 1636 additions and 46 deletions

View File

@@ -0,0 +1,13 @@
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')
})
})