_id.spec.js 534 B

123456789101112131415161718
  1. describe('Test the /structures/{id} page', () => {
  2. beforeEach(() => {
  3. cy.visit('/structures/498?parent=12097')
  4. })
  5. it('Expected elements are presents', () => {
  6. cy.get('h2').contains('Orchestre d\'Harmonie de Cluses')
  7. cy.get('.v-chip').contains('Orchestre d\'harmonie')
  8. cy.get('h4').contains('Descriptif')
  9. cy.get('h4').contains('Contact')
  10. // leaflet map is visible and was correctly instanciated
  11. cy.get('#map', { timeout: 8000 })
  12. .should('be.visible')
  13. .children('.leaflet-pane')
  14. })
  15. })