mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('Footer', () => {
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/');
|
|
|
|
// Footer must first be visible
|
|
cy.get('ds-footer').should('be.visible');
|
|
|
|
// Analyze <ds-footer> for accessibility
|
|
testA11y('ds-footer');
|
|
});
|
|
});
|