diff --git a/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.d.ts b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.d.ts new file mode 100644 index 00000000..cb0ff5c3 --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.js b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.js new file mode 100644 index 00000000..a7e824c4 --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.js @@ -0,0 +1,15 @@ +import { testView } from '../../../test/_globals.js'; +import { logout, login } from '../../support/index.js'; +describe('Work Order Milestone Calendar', () => { + beforeEach(() => { + logout(); + login(testView); + }); + afterEach(logout); + it('Has no detectable accessibility issues', () => { + cy.visit('/workOrders/milestoneCalendar'); + cy.location('pathname').should('equal', '/workOrders/milestoneCalendar'); + cy.injectAxe(); + cy.checkA11y(); + }); +}); diff --git a/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.ts b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.ts new file mode 100644 index 00000000..17420e0e --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderMilestoneCalendar.cy.ts @@ -0,0 +1,19 @@ +import { testView } from '../../../test/_globals.js' + +import { logout, login } from '../../support/index.js' + +describe('Work Order Milestone Calendar', () => { + beforeEach(() => { + logout() + login(testView) + }) + + afterEach(logout) + + it('Has no detectable accessibility issues', () => { + cy.visit('/workOrders/milestoneCalendar') + cy.location('pathname').should('equal', '/workOrders/milestoneCalendar') + cy.injectAxe() + cy.checkA11y() + }) +}) diff --git a/cypress/e2e/03-readOnly/workOrderOutlook.cy.d.ts b/cypress/e2e/03-readOnly/workOrderOutlook.cy.d.ts new file mode 100644 index 00000000..cb0ff5c3 --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderOutlook.cy.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/cypress/e2e/03-readOnly/workOrderOutlook.cy.js b/cypress/e2e/03-readOnly/workOrderOutlook.cy.js new file mode 100644 index 00000000..a13b8c4b --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderOutlook.cy.js @@ -0,0 +1,15 @@ +import { testView } from '../../../test/_globals.js'; +import { logout, login } from '../../support/index.js'; +describe('Work Order Outlook Integration', () => { + beforeEach(() => { + logout(); + login(testView); + }); + afterEach(logout); + it('Has no detectable accessibility issues', () => { + cy.visit('/workOrders/outlook'); + cy.location('pathname').should('equal', '/workOrders/outlook'); + cy.injectAxe(); + cy.checkA11y(); + }); +}); diff --git a/cypress/e2e/03-readOnly/workOrderOutlook.cy.ts b/cypress/e2e/03-readOnly/workOrderOutlook.cy.ts new file mode 100644 index 00000000..4e00e4c7 --- /dev/null +++ b/cypress/e2e/03-readOnly/workOrderOutlook.cy.ts @@ -0,0 +1,19 @@ +import { testView } from '../../../test/_globals.js' + +import { logout, login } from '../../support/index.js' + +describe('Work Order Outlook Integration', () => { + beforeEach(() => { + logout() + login(testView) + }) + + afterEach(logout) + + it('Has no detectable accessibility issues', () => { + cy.visit('/workOrders/outlook') + cy.location('pathname').should('equal', '/workOrders/outlook') + cy.injectAxe() + cy.checkA11y() + }) +})