mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 20:42:52 +00:00
43 lines
1.6 KiB
TypeScript
43 lines
1.6 KiB
TypeScript
/*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
describe('news', function () {
|
|
beforeEach(function () {
|
|
cy.intercept('POST', 'https://mobile.server.uni-frankfurt.de/search', {
|
|
fixture: 'search/types/message/message-1.json',
|
|
}).as('search');
|
|
});
|
|
|
|
it('should show all articles by default', function () {
|
|
cy.visit('/news');
|
|
cy.get('stapps-news-item').should('have.length', 6);
|
|
});
|
|
|
|
it('should reload on filter change', function () {
|
|
cy.visit('/news');
|
|
cy.get('stapps-news-item').should('have.length', 6);
|
|
cy.get('stapps-news-settings-filter').first().click({force: true});
|
|
cy.wait('@search');
|
|
});
|
|
|
|
it('should have an external link indicator on detail pages', function () {
|
|
cy.intercept('POST', 'https://mobile.server.uni-frankfurt.de/search', {
|
|
fixture: 'search/types/message/single-message.json',
|
|
}).as('search');
|
|
cy.visit('/data-detail/c90c7d30-410f-5aea-a67b-ea1f98929b93');
|
|
cy.contains('ion-card', 'Ursprünglicher Link').find('ion-icon[name="open_in_browser"]').should('exist');
|
|
});
|
|
});
|