diff --git a/apps/datahub-e2e/src/e2e/datasets.cy.ts b/apps/datahub-e2e/src/e2e/datasets.cy.ts index 747c81b584..b096d09cec 100644 --- a/apps/datahub-e2e/src/e2e/datasets.cy.ts +++ b/apps/datahub-e2e/src/e2e/datasets.cy.ts @@ -270,6 +270,7 @@ describe('datasets', () => { cy.get('@optionsLabel').should('eql', [ 'Agence wallonne du Patrimoine (SPW - Territoire, Logement, Patrimoine, Énergie - Agence wallonne du Patrimoine) (1)', 'atmo Hauts-de-France (1)', + 'Barbie Inc. (1)', 'Bundesamt für Raumentwicklung (1)', "Canton du Valais - Service de l'environnement (SEN) - Protection des sols (1)", 'Cellule informatique et géomatique (SPW - Intérieur et Action sociale - Direction fonctionnelle et d’appui) (1)', @@ -279,7 +280,7 @@ describe('datasets', () => { 'Géo2France (1)', "Helpdesk carto du SPW (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées) (2)", 'Métropole Européenne de Lille (1)', - 'Région Hauts-de-France (2)', + 'Région Hauts-de-France (1)', 'Service public de Wallonie (SPW) (2)', "Société Publique de Gestion de l'Eau (SPGE) (1)", ]) diff --git a/apps/datahub-e2e/src/e2e/organizations.cy.ts b/apps/datahub-e2e/src/e2e/organizations.cy.ts index 9182f01df0..106610cfcc 100644 --- a/apps/datahub-e2e/src/e2e/organizations.cy.ts +++ b/apps/datahub-e2e/src/e2e/organizations.cy.ts @@ -45,21 +45,21 @@ describe('organizations', () => { }) it('should display organization information', () => { cy.get('@organizationsName') - .eq(2) + .eq(3) .invoke('text') .should('contain', 'Bundesamt für Raumentwicklung') cy.get('@organizationsDesc') - .eq(2) + .eq(3) .invoke('text') .should('contain', 'Bundesamt für Raumentwicklung') cy.get('@organizationsRecordsCount') - .eq(2) + .eq(3) .invoke('text') .should('contain', '1') }) it('should display an actual logo', () => { cy.get('@organizations') - .eq(8) + .eq(9) .find('img') .should('have.attr', 'src') .and('contain', 'G%C3%A9o2France-4-3_decoupe.png') @@ -124,7 +124,7 @@ describe('organizations', () => { it('should go to next page with arrow', () => { cy.then(() => { cy.get('@pagination').find('[data-cy=next-page]').click() - cy.get('@organizations').should('have.length', 2) + cy.get('@organizations').should('have.length', 3) }) }) it('should go back to the first page with arrow', () => {