mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
465 B
TypeScript
15 lines
465 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('Breadcrumbs', () => {
|
|
it('should pass accessibility tests', () => {
|
|
// Visit an Item, as those have more breadcrumbs
|
|
cy.visit('/entities/publication/'.concat(Cypress.env('DSPACE_TEST_ENTITY_PUBLICATION')));
|
|
|
|
// Wait for breadcrumbs to be visible
|
|
cy.get('ds-breadcrumbs').should('be.visible');
|
|
|
|
// Analyze <ds-breadcrumbs> for accessibility
|
|
testA11y('ds-breadcrumbs');
|
|
});
|
|
});
|