You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
252 B
JavaScript

/* global cy */
describe('Pokedex', function() {
it('frontpage can be opened', function () {
cy.visit('http://localhost:5000')
cy.contains('pikachu')
cy.contains('Pokémon and Pokémon character names are trademarks of Nintendo')
})
})