mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
describe('Footer', () => {
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/');
|
|
cy.injectAxe();
|
|
|
|
// Footer must first be visible
|
|
cy.get('ds-footer').should('be.visible');
|
|
|
|
// Analyze <ds-footer> for accessibility
|
|
cy.checkA11y('ds-footer');
|
|
});
|
|
}); |