perf: keyshortcut directive #1315

Merged
jsegarra merged 7 commits from improve_shortcut_directive into dev 2025-02-06 07:14:23 +00:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit 65a8a78622 - Show all commits

View File

@ -28,6 +28,17 @@ describe('VnShortcuts', () => {
});
cy.url().should('include', module);
if (['monitor', 'claim'].includes(module)) {
return;
}
cy.waitForElement('.q-page').should('exist');
cy.dataCy('vnTableCreateBtn').should('exist');
cy.get('.q-page').trigger('keydown', {
ctrlKey: true,
altKey: true,
key: '+',
});
cy.get('#formModel').should('exist');
});
}
});