Skip to content

Commit

Permalink
refactor: Cypress testing library page stages (#2267)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mintoo200 authored Nov 20, 2023
1 parent 615c79c commit 314763e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions cypress/e2e/stage.cy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="cypress" />
/// <reference types="@testing-library/cypress" />

import stageNonFiltreeResponse from '../fixture/annonces/stageNonFiltreeMeilisearcheResponse.fixture.json';

describe('Parcours logement', () => {
Expand All @@ -11,14 +12,16 @@ describe('Parcours logement', () => {
context('quand on arrive sur la page de recherche de stages', () => {
describe('quand on fait une recherche par domaines', () => {
it('affiche les domaines par ordre alphabétique avec non renseigné en dernier element', () => {
cy.intercept({ pathname: '/multi-search' }, stageNonFiltreeResponse);
cy.intercept({ pathname: '/multi-search' }, stageNonFiltreeResponse).as('facets');
cy.wait('@facets');

cy.findByRole('button', { name: 'Domaines' }).click();
// FIXME (GAFI 06-11-2023): Devrait être role combobox
cy.findByRole('button', { name: /Domaines/i }).click();

cy.get('ul > li[role="option"]').first().should('contain.text', 'Achats');
cy.get('ul > li[role="option"]').eq(1).should('contain.text', 'Production');
cy.get('ul > li[role="option"]').eq(2).should('contain.text', 'Travaux');
cy.get('ul > li[role="option"]').last().should('contain.text', 'Non renseigné');
cy.findAllByRole('option').first().should('contain.text', 'Achats');
cy.findAllByRole('option').eq(1).should('contain.text', 'Production');
cy.findAllByRole('option').eq(2).should('contain.text', 'Travaux');
cy.findAllByRole('option').last().should('contain.text', 'Non renseigné');
});
});
});
Expand Down

0 comments on commit 314763e

Please sign in to comment.