forked from verdnatura/salix-front
34 lines
778 B
JavaScript
34 lines
778 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
describe('VnShortcuts', () => {
|
|
const modules = {
|
|
item: 'a',
|
|
customer: 'c',
|
|
ticket: 't',
|
|
claim: 'r',
|
|
worker: 'w',
|
|
monitor: 'm',
|
|
order: 'o',
|
|
supplier: 'p',
|
|
entry: 'e',
|
|
zone: 'z',
|
|
account: 'u',
|
|
};
|
|
beforeEach(() => {
|
|
cy.login('developer');
|
|
cy.visit('/');
|
|
});
|
|
|
|
for (const [module, shortcut] of Object.entries(modules)) {
|
|
it(`should visit ${module} module`, () => {
|
|
cy.get('body').trigger('keydown', {
|
|
ctrlKey: true,
|
|
altKey: true,
|
|
code: `Key${shortcut.toUpperCase()}`,
|
|
});
|
|
|
|
cy.url().should('include', module);
|
|
});
|
|
}
|
|
});
|