0
0
Fork 0

fix: refs #7889 fixed shortcut test

This commit is contained in:
Jon Elias 2024-09-09 08:47:44 +02:00
parent ef98f60486
commit ba7497f055
1 changed files with 8 additions and 8 deletions

View File

@ -9,23 +9,23 @@ describe('VnShortcuts', () => {
monitor: 'm',
order: 'p',
supplier: 'p',
entry: '',
entry: 'e',
zone: 'z',
account: 'u',
};
beforeEach(() => {
cy.login('developer');
cy.visit('/');
});
it('should visit each module', () => {
cy.login('developer');
cy.visit('/');
Object.keys(modules).forEach((module) => {
const shortcut = modules[module];
cy.get('body').type(`{ctrl}{alt}${shortcut}`);
cy.get('body').click();
cy.get('body').type(`{ctrl+alt+${shortcut}}`);
cy.url().should('include', module);
cy.get('body').should('be.visible');
if (shortcut != 'u' && shortcut != 'o') {
cy.get('.q-table__middle').should('be.visible');
}
cy.visit('/');
});