0
0
Fork 0

feat: improve test

This commit is contained in:
Javier Segarra 2025-01-30 20:30:03 +01:00
parent c067006d08
commit 65a8a78622
1 changed files with 11 additions and 0 deletions

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');
});
}
});