work order outlook and milestone coverage
parent
6d5fb9a3b9
commit
ada9d7caf1
|
|
@ -0,0 +1 @@
|
|||
export {};
|
||||
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
|
@ -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()
|
||||
})
|
||||
})
|
||||
|
|
@ -0,0 +1 @@
|
|||
export {};
|
||||
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
|
@ -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()
|
||||
})
|
||||
})
|
||||
Loading…
Reference in New Issue