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
(cherry picked from commit 4cd55d6669
)
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { testA11y } from 'cypress/support/utils';
|
|
|
|
describe('Feedback', () => {
|
|
it('should pass accessibility tests', () => {
|
|
cy.visit('/info/feedback');
|
|
|
|
// Page must first be visible
|
|
cy.get('ds-feedback').should('be.visible');
|
|
|
|
// Analyze <ds-feedback> for accessibility
|
|
testA11y('ds-feedback');
|
|
});
|
|
});
|