mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

Admin Add New Modals Admin Edit Modals Admin Export Modals Admin Workflow Page End User Agreement Feedback Profile Page System Wide Alert
14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('End User Agreement', () => {
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/info/end-user-agreement');
|
|
|
|
// Page must first be visible
|
|
cy.get('ds-end-user-agreement').should('be.visible');
|
|
|
|
// Analyze <ds-end-user-agreement> for accessibility
|
|
testA11y('ds-end-user-agreement');
|
|
});
|
|
});
|