fix: refs #8583 worker mutual e2e

This commit is contained in:
Carlos Satorres 2025-02-20 11:56:16 +01:00
parent d2d5b5235b
commit 661e35abd8
2 changed files with 15 additions and 7 deletions

View File

@ -47,6 +47,10 @@ const columns = [
url: 'centers', url: 'centers',
fields: ['id', 'name'], fields: ['id', 'name'],
}, },
columnCreate: {
component: 'select',
url: 'medicalCenters',
},
}, },
{ {
align: 'left', align: 'left',

View File

@ -1,11 +1,13 @@
/// <reference types="cypress" /> /// <reference types="cypress" />
describe('WorkerMutual', () => { describe('WorkerMutual', () => {
const userId = 1106; const userId = 1106;
const create = '[data-cy="vnTableCreateBtn"]'; const saveBtn = '.q-mt-lg > .q-btn--standard';
const numberOfWagons = '[data-cy="numberOfWagons"]'; const medicalReview = {
const linesLimit = '[data-cy="linesLimit"]'; Date: { val: '01-01-2001', type: 'date' },
const volumeLimit = '[data-cy="volumeLimit"]'; 'Formation Center': { val: '1', type: 'select' },
const sizeLimit = '[data-cy="sizeLimit"]'; Invoice: { val: '24532' },
Amount: { val: '540' },
};
beforeEach(() => { beforeEach(() => {
cy.viewport(1280, 720); cy.viewport(1280, 720);
cy.login('developer'); cy.login('developer');
@ -13,7 +15,9 @@ describe('WorkerMutual', () => {
cy.get('.q-page-sticky > div > .q-btn').click(); cy.get('.q-page-sticky > div > .q-btn').click();
}); });
it('Should load layout', () => { it('should create a medical Review', () => {
cy.get('.q-card').should('be.visible'); cy.fillInForm(medicalReview);
cy.get(saveBtn).click();
cy.checkNotification('Data created');
}); });
}); });