Files
dspace-angular/cypress/e2e/footer.cy.ts
2023-03-01 16:39:31 -06:00

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');
});
});