23 lines
785 B
JavaScript
23 lines
785 B
JavaScript
import { testUpdate } from '../../../test/_globals.js';
|
|
import { login, logout } from '../../support/index.js';
|
|
describe('Update - Work Orders', () => {
|
|
beforeEach(() => {
|
|
logout();
|
|
login(testUpdate);
|
|
});
|
|
afterEach(logout);
|
|
it('Has a "Create" link on the Work Order Search', () => {
|
|
cy.visit('/workOrders');
|
|
cy.location('pathname').should('equal', '/workOrders');
|
|
cy.get("a[href$='/workOrders/new']").should('exist');
|
|
});
|
|
describe('Creates a New Work Order', () => {
|
|
it('Has no detectable accessibility issues', () => {
|
|
cy.visit('/workOrders/new');
|
|
cy.location('pathname').should('equal', '/workOrders/new');
|
|
cy.injectAxe();
|
|
cy.checkA11y();
|
|
});
|
|
});
|
|
});
|