14 lines
273 B
JavaScript
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')
|
|
})
|
|
})
|