feat: implement custom cdk virtual scroll behavior

This commit is contained in:
Thea Schöbl
2023-02-28 15:00:57 +00:00
committed by Rainer Killinger
parent f5ca1508fb
commit 968cb72957
17 changed files with 583 additions and 120 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.
@@ -24,9 +24,9 @@ describe('ical', function () {
});
it('should export a single event', function () {
cy.visit('/search');
cy.get('ion-searchbar').click().type('test');
cy.contains('ion-item', 'UNIcert (Test)').contains('ion-chip', 'Termine Auswählen').click();
cy.visit('/search?query=test');
cy.wait('@search');
cy.contains('ion-chip', 'Termine Auswählen').first().click();
cy.get('ion-app > ion-modal').within(() => {
cy.get('ion-footer > ion-toolbar > ion-button').should('have.attr', 'disabled');