work order outlook and milestone coverage

deepsource-autofix-76c6eb20
Dan Gowans 2023-01-30 13:15:39 -05:00
parent 6d5fb9a3b9
commit ada9d7caf1
6 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1 @@
export {};

View File

@ -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();
});
});

View File

@ -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()
})
})

View File

@ -0,0 +1 @@
export {};

View File

@ -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();
});
});

View File

@ -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()
})
})