aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cypress/e2e/pages/thematic.cy.ts
blob: dab0d45ff3fe5eb31bc065fa41080cd3b371ebaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { ROUTES } from '../../../../src/utils/constants';

describe('Thematic', () => {
  beforeEach(() => {
    cy.visit(ROUTES.HOME);
    cy.findByRole('link', { name: /^Développement/i }).click();
  });

  it('successfully loads', () => {
    cy.findByRole('heading', { level: 1 }).should('exist');
  });

  it('contains the thematic meta', () => {
    // eslint-disable-next-line @typescript-eslint/no-magic-numbers
    cy.findAllByRole('term').should('have.length.at.least', 2);

    /* The accessible name is not recognized while it should be the `dt` text
     * content */
    /* cy.findByRole('term', { name: 'Publié le :' }).should('exist');
    cy.findByRole('term', { name: 'Total :' }).should('exist'); */
  });

  it('contains a breadcrumbs', () => {
    cy.findByRole('navigation', { name: 'Fil d’Ariane' }).should('exist');
  });

  it('contains a table of contents', () => {
    cy.findByRole('heading', { level: 2, name: 'Table des matières' }).should(
      'exist'
    );
  });

  it('contains a thematics list widget and a topics list widget', () => {
    cy.findByRole('heading', { level: 2, name: 'Autres thématiques' }).should(
      'exist'
    );
    cy.findByRole('heading', { level: 2, name: 'Sujets connexes' }).should(
      'exist'
    );
  });
});