fix: replace breadcrumb popover with simply expanding the breadcrumbs

This commit is contained in:
Thea Schöbl
2023-02-24 11:34:41 +00:00
committed by Rainer Killinger
parent 982fb1653b
commit 1318cbca7f
6 changed files with 39 additions and 49 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2022 StApps
* Copyright (C) 2023 StApps
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, version 3.
@@ -32,10 +32,6 @@ describe('assessments', function () {
cy.visit('/assessments/detail/02f065a6-6c02-58ab-97d9-a3febdbc91a1?token=mock');
cy.get('.breadcrumb-collapsed').click();
cy.get('ion-popover').within(() => {
cy.get('ion-item').should('have.length', 3);
cy.get('ion-item').first().should('contain', 'Basismodule');
cy.get('ion-item').last().should('contain', 'Modellierung');
});
cy.get('ion-breadcrumb').should('have.length', 3);
});
});