mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
14 lines
434 B
TypeScript
14 lines
434 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('Browse By Subject', () => {
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/browse/subject');
|
|
|
|
// Wait for <ds-browse-by-metadata-page> to be visible
|
|
cy.get('ds-browse-by-metadata-page').should('be.visible');
|
|
|
|
// Analyze <ds-browse-by-metadata-page> for accessibility
|
|
testA11y('ds-browse-by-metadata-page');
|
|
});
|
|
});
|