Files
dspace-angular/cypress/e2e/header.cy.ts
2024-03-13 07:48:13 +01:00

14 lines
311 B
TypeScript

import { testA11y } from 'cypress/support/utils';
describe('Header', () => {
it('should pass accessibility tests', () => {
cy.visit('/');
// Header must first be visible
cy.get('ds-header').should('be.visible');
// Analyze <ds-header> for accessibility
testA11y('ds-header');
});
});