mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
418 B
TypeScript
15 lines
418 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('Community Page', () => {
|
|
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/communities/'.concat(Cypress.env('DSPACE_TEST_COMMUNITY')));
|
|
|
|
// <ds-community-page> tag must be loaded
|
|
cy.get('ds-community-page').should('be.visible');
|
|
|
|
// Analyze <ds-community-page> for accessibility issues
|
|
testA11y('ds-community-page');
|
|
});
|
|
});
|