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