Merge branch 'dev' of https: refs #8602//gitea.verdnatura.es/verdnatura/salix-front into 8602-refatorAndCreateEntry
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Pablo Natek 2025-03-10 12:58:29 +01:00
commit b63eea0766
25 changed files with 194 additions and 61 deletions

2
Jenkinsfile vendored
View File

@ -123,7 +123,7 @@ pipeline {
sh "docker-compose ${env.COMPOSE_PARAMS} up -d" sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") { image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
sh 'sh test/cypress/cypressParallel.sh 3' sh 'sh test/cypress/cypressParallel.sh 2'
} }
} }
} }

View File

@ -1143,9 +1143,13 @@ es:
.grid-create { .grid-create {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, max-content)); grid-template-columns: 1fr 1fr;
max-width: 100%;
grid-gap: 20px; grid-gap: 20px;
margin: 0 auto; margin: 0 auto;
.col-span-2 {
grid-column: span 2;
}
} }
.flex-one { .flex-one {

View File

@ -149,14 +149,12 @@ const columns = computed(() => [
:right-search="false" :right-search="false"
> >
<template #more-create-dialog="{ data }"> <template #more-create-dialog="{ data }">
<QCardSection>
<VnInputPassword <VnInputPassword
:label="t('Password')" :label="t('Password')"
v-model="data.password" v-model="data.password"
:required="true" :required="true"
autocomplete="new-password" autocomplete="new-password"
/> />
</QCardSection>
</template> </template>
</VnTable> </VnTable>
</template> </template>

View File

@ -16,7 +16,6 @@ const filter = {
{ relation: 'mandateType', scope: { fields: ['id', 'code'] } }, { relation: 'mandateType', scope: { fields: ['id', 'code'] } },
{ relation: 'company', scope: { fields: ['id', 'code'] } }, { relation: 'company', scope: { fields: ['id', 'code'] } },
], ],
where: { clientFk: route.params.id },
order: ['created DESC'], order: ['created DESC'],
limit: 20, limit: 20,
}; };
@ -65,7 +64,8 @@ const columns = computed(() => [
<VnTable <VnTable
data-key="Mandates" data-key="Mandates"
url="Mandates" url="Mandates"
:filter="filter" :user-filter="filter"
:filter="{ where: { clientFk: route.params.id } }"
auto-load auto-load
:columns="columns" :columns="columns"
class="full-width q-mt-md" class="full-width q-mt-md"

View File

@ -146,9 +146,8 @@ async function deleteEntry() {
<template> <template>
<CardDescriptor <CardDescriptor
ref="entryDescriptorRef"
:url="`Entries/${entityId}`" :url="`Entries/${entityId}`"
:userFilter="entryFilter" :filter="entryFilter"
title="supplier.nickname" title="supplier.nickname"
data-key="Entry" data-key="Entry"
width="lg-width" width="lg-width"

View File

@ -286,9 +286,7 @@ onBeforeMount(async () => {
<VnSection <VnSection
:data-key="dataKey" :data-key="dataKey"
prefix="entry" prefix="entry"
:array-data-props="{ :array-data-props="{ url: 'Entries/filter' }"
url: 'Entries/filter',
}"
> >
<template #advanced-menu> <template #advanced-menu>
<EntryFilter :data-key="dataKey" /> <EntryFilter :data-key="dataKey" />

View File

@ -230,7 +230,7 @@ watchEffect(selectedRows);
</span> </span>
</template> </template>
<template #more-create-dialog="{ data }"> <template #more-create-dialog="{ data }">
<div class="row q-col-gutter-xs"> <div class="row q-col-gutter-xs col-span-2">
<div class="col-12"> <div class="col-12">
<div class="q-col-gutter-xs"> <div class="q-col-gutter-xs">
<VnRow fixed> <VnRow fixed>

View File

@ -156,9 +156,7 @@ const columns = computed(() => [
onMounted(async () => { onMounted(async () => {
if (!route.query) return; if (!route.query) return;
if (route.query?.createForm) { if (route.query?.createForm) {
const query = JSON.parse(route.query?.createForm); await onClientSelected(JSON.parse(route.query?.createForm));
formInitialData.value = query;
await onClientSelected({ ...formInitialData.value, clientFk: query?.clientFk });
} else if (route.query?.table) { } else if (route.query?.table) {
const query = JSON.parse(route.query?.table); const query = JSON.parse(route.query?.table);
const clientFk = query?.clientFk; const clientFk = query?.clientFk;
@ -177,7 +175,6 @@ watch(
tableRef.value.create.formInitialData = formInitialData.value; tableRef.value.create.formInitialData = formInitialData.value;
} }
}, },
{ immediate: true },
); );
async function onClientSelected({ clientFk }, formData = {}) { async function onClientSelected({ clientFk }, formData = {}) {
@ -191,13 +188,17 @@ async function onClientSelected({ clientFk }, formData = {}) {
addressOptions.value = data; addressOptions.value = data;
formData.defaultAddressFk = data[0].client.defaultAddressFk; formData.defaultAddressFk = data[0].client.defaultAddressFk;
formData.addressId = formData.defaultAddressFk; formData.addressId = formData.defaultAddressFk;
formInitialData.value = { ...formData, clientFk };
formInitialData.value = { addressId: formData.addressId, clientFk };
await fetchAgencies(formData); await fetchAgencies(formData);
} }
async function fetchAgencies({ landed, addressId }) { async function fetchAgencies(formData) {
if (!landed || !addressId) return (agencyList.value = []); const { landed, addressId } = formData;
if (!landed || !addressId) {
formData.defaultAddressFk = formInitialData.value.defaultAddressFk;
return (agencyList.value = []);
}
const { data } = await axios.get('Agencies/landsThatDay', { const { data } = await axios.get('Agencies/landsThatDay', {
params: { params: {
@ -220,6 +221,11 @@ const getDateColor = (date) => {
if (difference == 0) return 'bg-warning'; if (difference == 0) return 'bg-warning';
if (difference < 0) return 'bg-success'; if (difference < 0) return 'bg-success';
}; };
const isDefaultAddress = (opt, data) => {
const addressId = data.defaultAddressFk ?? data.addressId;
return addressId === opt.id && opt.isActive;
};
</script> </script>
<template> <template>
@ -310,10 +316,7 @@ const getDateColor = (date) => {
> >
<QItemSection style="min-width: min-content" avatar> <QItemSection style="min-width: min-content" avatar>
<QIcon <QIcon
v-if=" v-if="isDefaultAddress(scope.opt, data)"
scope.opt.isActive &&
data.defaultAddressFk === scope.opt.id
"
size="sm" size="sm"
color="grey" color="grey"
name="star" name="star"

View File

@ -172,6 +172,7 @@ const filterColumns = computed(() => {
> >
<template #more-create-dialog="{ data }"> <template #more-create-dialog="{ data }">
<VnInput <VnInput
class="col-span-2"
:label="t('globals.name')" :label="t('globals.name')"
v-model="data.socialName" v-model="data.socialName"
:uppercase="true" :uppercase="true"

View File

@ -54,8 +54,7 @@ onBeforeMount(() => {
onMounted(async () => { onMounted(async () => {
if (!route.query) return; if (!route.query) return;
if (route.query?.createForm) { if (route.query?.createForm) {
formInitialData.value = JSON.parse(route.query?.createForm); await onClientSelected(JSON.parse(route.query?.createForm));
await onClientSelected(formInitialData.value);
} else if (route.query?.table) { } else if (route.query?.table) {
const query = route.query?.table; const query = route.query?.table;
const clientId = +JSON.parse(query)?.clientFk; const clientId = +JSON.parse(query)?.clientFk;
@ -273,12 +272,18 @@ const fetchAddresses = async (formData) => {
return; return;
} }
const { data } = await getAddresses(formData.clientId); const { data } = await getAddresses(formData.clientId);
formInitialData.value = { clientId: formData.clientId };
if (!data) return; if (!data) {
formInitialData.value = { clientId: formData.clientId };
return;
}
addressesOptions.value = data; addressesOptions.value = data;
selectedClient.value = data[0].client; selectedClient.value = data[0].client;
formData.addressId = selectedClient.value.defaultAddressFk; formData.addressId = selectedClient.value.defaultAddressFk;
formInitialData.value.addressId = formData.addressId; formInitialData.value = {
clientId: formData.clientId,
addressId: formData.addressId,
};
}; };
watch( watch(
() => route.query.table, () => route.query.table,

View File

@ -96,6 +96,7 @@ async function setAdvancedSummary(data) {
option-label="name" option-label="name"
option-value="code" option-value="code"
v-model="data.maritalStatus" v-model="data.maritalStatus"
data-cy="MaritalStatus"
/> />
</VnRow> </VnRow>
@ -107,6 +108,7 @@ async function setAdvancedSummary(data) {
option-label="name" option-label="name"
option-value="id" option-value="id"
v-model="data.originCountryFk" v-model="data.originCountryFk"
data-cy="country"
/> />
<VnSelect <VnSelect
:label="t('Education level')" :label="t('Education level')"
@ -132,7 +134,7 @@ async function setAdvancedSummary(data) {
<VnInputDate :label="t('seniority')" v-model="data.seniority" /> <VnInputDate :label="t('seniority')" v-model="data.seniority" />
</VnRow> </VnRow>
<VnRow> <VnRow>
<VnInput v-model="data.fi" :label="t('fi')" /> <VnInput v-model="data.fi" :label="t('fi')" data-cy="fi" />
<VnInputDate :label="t('birth')" v-model="data.birth" /> <VnInputDate :label="t('birth')" v-model="data.birth" />
</VnRow> </VnRow>
<VnRow wrap> <VnRow wrap>

View File

@ -98,12 +98,14 @@ watch(
<VnInput <VnInput
:label="t('worker.operator.numberOfWagons')" :label="t('worker.operator.numberOfWagons')"
v-model="row.numberOfWagons" v-model="row.numberOfWagons"
data-cy="numberOfWagons"
/> />
<VnSelect <VnSelect
:label="t('worker.operator.train')" :label="t('worker.operator.train')"
:options="trainsData" :options="trainsData"
hide-selected hide-selected
v-model="row.trainFk" v-model="row.trainFk"
data-cy="train"
:required="true" :required="true"
/> />
</VnRow> </VnRow>
@ -116,6 +118,7 @@ watch(
option-value="code" option-value="code"
v-model="row.itemPackingTypeFk" v-model="row.itemPackingTypeFk"
:required="true" :required="true"
data-cy="itemPackingType"
/> />
<VnSelect <VnSelect
:label="t('worker.operator.warehouse')" :label="t('worker.operator.warehouse')"
@ -123,6 +126,7 @@ watch(
hide-selected hide-selected
v-model="row.warehouseFk" v-model="row.warehouseFk"
:required="true" :required="true"
data-cy="warehouse"
/> />
</VnRow> </VnRow>
<VnRow> <VnRow>
@ -132,6 +136,7 @@ watch(
hide-selected hide-selected
option-label="description" option-label="description"
v-model="row.sectorFk" v-model="row.sectorFk"
data-cy="sector"
/> />
<VnSelect <VnSelect
:label="t('worker.operator.labeler')" :label="t('worker.operator.labeler')"
@ -139,6 +144,7 @@ watch(
hide-selected hide-selected
option-label="name" option-label="name"
v-model="row.labelerFk" v-model="row.labelerFk"
data-cy="labeler"
> >
<template #option="scope"> <template #option="scope">
<QItem v-bind="scope.itemProps"> <QItem v-bind="scope.itemProps">
@ -160,11 +166,13 @@ watch(
:label="t('worker.operator.linesLimit')" :label="t('worker.operator.linesLimit')"
v-model="row.linesLimit" v-model="row.linesLimit"
lazy-rules lazy-rules
data-cy="linesLimit"
/> />
<VnInput <VnInput
:label="t('worker.operator.volumeLimit')" :label="t('worker.operator.volumeLimit')"
v-model="row.volumeLimit" v-model="row.volumeLimit"
lazy-rules lazy-rules
data-cy="volumeLimit"
/> />
</VnRow> </VnRow>
<VnRow> <VnRow>
@ -172,6 +180,7 @@ watch(
:label="t('worker.operator.sizeLimit')" :label="t('worker.operator.sizeLimit')"
v-model="row.sizeLimit" v-model="row.sizeLimit"
lazy-rules lazy-rules
data-cy="sizeLimit"
/> />
<VnInput <VnInput
:label="t('worker.operator.isOnReservationMode')" :label="t('worker.operator.isOnReservationMode')"

View File

@ -68,8 +68,14 @@ const deleteRelative = async (id) => {
:label="t('familySituation')" :label="t('familySituation')"
clearable clearable
v-model="data.familySituation" v-model="data.familySituation"
data-cy="familySituation"
/>
<VnInput
:label="t('spouseNif')"
clearable
v-model="data.spouseNif"
data-cy="spouseNif"
/> />
<VnInput :label="t('spouseNif')" clearable v-model="data.spouseNif" />
</VnRow> </VnRow>
<VnRow> <VnRow>
<VnSelect <VnSelect
@ -93,11 +99,13 @@ const deleteRelative = async (id) => {
clearable clearable
v-model="data.childPension" v-model="data.childPension"
:label="t(`childPension`)" :label="t(`childPension`)"
data-cy="childPension"
/> />
<VnInput <VnInput
clearable clearable
v-model="data.spousePension" v-model="data.spousePension"
:label="t(`spousePension`)" :label="t(`spousePension`)"
data-cy="spousePension"
/> />
</VnRow> </VnRow>
<VnRow wrap> <VnRow wrap>
@ -190,12 +198,14 @@ const deleteRelative = async (id) => {
type="number" type="number"
v-model="row.birthed" v-model="row.birthed"
:label="t(`birthed`)" :label="t(`birthed`)"
data-cy="birthed"
/> />
<VnInput <VnInput
type="number" type="number"
v-model="row.adoptionYear" v-model="row.adoptionYear"
:label="t(`adoptionYear`)" :label="t(`adoptionYear`)"
data-cy="adoptionYear"
/> />
<QCheckbox <QCheckbox
v-model="row.isDependend" v-model="row.isDependend"

View File

@ -53,7 +53,7 @@ const title = computed(() => (isEditMode.value ? t('Edit entry') : t('Add time')
const urlCreate = computed(() => const urlCreate = computed(() =>
isEditMode.value isEditMode.value
? `WorkerTimeControls/${$props.entryId}/updateTimeEntry` ? `WorkerTimeControls/${$props.entryId}/updateTimeEntry`
: `WorkerTimeControls/${route.params.id}/addTimeEntry` : `WorkerTimeControls/${route.params.id}/addTimeEntry`,
); );
onBeforeMount(() => { onBeforeMount(() => {
@ -83,6 +83,7 @@ onBeforeMount(() => {
autofocus autofocus
:required="true" :required="true"
:is-clearable="false" :is-clearable="false"
data-cy="entryHour"
/> />
<VnSelect <VnSelect
:label="t('Type')" :label="t('Type')"
@ -91,6 +92,7 @@ onBeforeMount(() => {
option-value="code" option-value="code"
option-label="description" option-label="description"
hide-selected hide-selected
data-cy="entryType"
/> />
</template> </template>
</FormModelPopup> </FormModelPopup>

View File

@ -223,7 +223,7 @@ async function autofillBic(worker) {
:right-search="false" :right-search="false"
> >
<template #more-create-dialog="{ data }"> <template #more-create-dialog="{ data }">
<div class="q-pa-lg full-width"> <div class="col-span-2">
<VnRadio <VnRadio
v-model="data.isFreelance" v-model="data.isFreelance"
:val="false" :val="false"

View File

@ -34,8 +34,8 @@ describe('OrderList', () => {
cy.dataCy('Customer ID_input').type('1101{enter}'); cy.dataCy('Customer ID_input').type('1101{enter}');
cy.dataCy('vnTableCreateBtn').click(); cy.dataCy('vnTableCreateBtn').click();
cy.dataCy('landedDate').find('input').type('06/01/2001'); cy.dataCy('landedDate').find('input').type('06/01/2001');
cy.get(agencyCreateSelect).click(); cy.selectOption(agencyCreateSelect, 1);
cy.get('.q-menu > div> .q-item:nth-child(1)').click();
cy.intercept('GET', /\/api\/Orders\/\d/).as('orderSale'); cy.intercept('GET', /\/api\/Orders\/\d/).as('orderSale');
cy.get('[data-cy="FormModelPopup_save"] > .q-btn__content > .block').click(); cy.get('[data-cy="FormModelPopup_save"] > .q-btn__content > .block').click();
cy.wait('@orderSale'); cy.wait('@orderSale');
@ -60,8 +60,8 @@ describe('OrderList', () => {
cy.get(clientCreateSelect).should('have.value', 'Bruce Wayne'); cy.get(clientCreateSelect).should('have.value', 'Bruce Wayne');
cy.get(addressCreateSelect).should('have.value', 'Bruce Wayne'); cy.get(addressCreateSelect).should('have.value', 'Bruce Wayne');
cy.dataCy('landedDate').find('input').type('06/01/2001'); cy.dataCy('landedDate').find('input').type('06/01/2001');
cy.get(agencyCreateSelect).click(); cy.selectOption(agencyCreateSelect, 1);
cy.get('.q-menu > div> .q-item:nth-child(1)').click();
cy.intercept('GET', /\/api\/Orders\/\d/).as('orderSale'); cy.intercept('GET', /\/api\/Orders\/\d/).as('orderSale');
cy.get('[data-cy="FormModelPopup_save"] > .q-btn__content > .block').click(); cy.get('[data-cy="FormModelPopup_save"] > .q-btn__content > .block').click();
cy.wait('@orderSale'); cy.wait('@orderSale');

View File

@ -139,7 +139,7 @@ describe.skip('Ticket Lack detail', () => {
cy.wait('@getItemGetSimilar'); cy.wait('@getItemGetSimilar');
}); });
describe('Replace item if', () => { describe('Replace item if', () => {
it('Quantity is less than available', () => { it.skip('Quantity is less than available', () => {
cy.get(':nth-child(1) > .text-right > .q-btn').click(); cy.get(':nth-child(1) > .text-right > .q-btn').click();
}); });
}); });

View File

@ -38,8 +38,8 @@ describe('TicketList', () => {
it('filter client and create ticket', () => { it('filter client and create ticket', () => {
cy.intercept('GET', /\/api\/Tickets\/filter/).as('ticketSearchbar'); cy.intercept('GET', /\/api\/Tickets\/filter/).as('ticketSearchbar');
searchResults(); searchResults();
cy.wait('@ticketSearchbar');
cy.intercept('GET', /\/api\/Tickets\/filter/).as('ticketFilter');
cy.dataCy('Customer ID_input').clear('1'); cy.dataCy('Customer ID_input').clear('1');
cy.dataCy('Customer ID_input').type('1101{enter}'); cy.dataCy('Customer ID_input').type('1101{enter}');

View File

@ -0,0 +1,15 @@
describe('WorkerBasicData', () => {
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('/#/worker/1107/basic-data');
});
it('should modify worker summary', () => {
cy.dataCy('MaritalStatus').type('Married');
cy.dataCy('fi').type('42572374H');
cy.dataCy('country').type('Alemania');
cy.saveCard();
cy.checkNotification('Data saved');
});
});

View File

@ -0,0 +1,34 @@
describe('WorkerBusiness', () => {
const saveBtn = '.q-mt-lg > .q-btn--standard';
const contributionCode = `Representantes de comercio`;
const contractType = `INDEFINIDO A TIEMPO COMPLETO`;
const Business = {
'Start Date': { val: '26-12-2002', type: 'date' },
Company: { val: `VNL`, type: 'select' },
Department: { val: `RECICLAJE`, type: 'select' },
'Professional Category': { val: `employee`, type: 'select' },
'Work Calendar': { val: `General schedule`, type: 'select' },
'Work Center': { val: `Silla`, type: 'select' },
'Contract Category': { val: `INFORMATICA`, type: 'select' },
'Contribution Code': { val: contributionCode, type: 'select' },
Rate: { val: `5` },
'Contract Type': { val: contractType, type: 'select' },
'Transport Workers Salary': { val: `1000` },
};
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('hr');
cy.visit('/#/worker/1107/business');
cy.addCard();
});
it('should create a business', () => {
cy.fillInForm({
...Business,
});
cy.get(saveBtn).click();
cy.checkNotification('Data created');
});
});

View File

@ -0,0 +1,23 @@
/// <reference types="cypress" />
describe('WorkerMutual', () => {
const userId = 1106;
const saveBtn = '.q-mt-lg > .q-btn--standard';
const medicalReview = {
Date: { val: '01-01-2001', type: 'date' },
'Formation Center': { val: '1', type: 'select' },
Invoice: { val: '24532' },
Amount: { val: '540' },
};
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/worker/${userId}/medical`);
cy.addCard();
});
it('should create a medical Review', () => {
cy.fillInForm(medicalReview);
cy.get(saveBtn).click();
cy.checkNotification('Data created');
});
});

View File

@ -0,0 +1,13 @@
/// <reference types="cypress" />
describe('WorkerNotes', () => {
const userId = 1106;
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
cy.visit(`/#/worker/${userId}/notes`);
});
it('Should load layout', () => {
cy.get('.q-card').should('be.visible');
});
});

View File

@ -0,0 +1,19 @@
/// <reference types="cypress" />
describe('WorkerOperator', () => {
const userId = 1106;
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('hr');
cy.visit(`/#/worker/${userId}/operator`);
});
it('should fill the operator form', () => {
cy.dataCy('numberOfWagons').type('4');
cy.dataCy('linesLimit').type('6');
cy.dataCy('volumeLimit').type('3');
cy.dataCy('sizeLimit').type('3');
cy.saveCard();
cy.checkNotification('Data saved');
});
});

View File

@ -1,19 +1,5 @@
describe('WorkerPit', () => { describe('WorkerPit', () => {
const familySituationInput = '[data-cy="Family Situation_input"]';
const familySituation = '1';
const childPensionInput = '[data-cy="Child Pension_input"]';
const childPension = '120';
const spouseNifInput = '[data-cy="Spouse Pension_input"]';
const spouseNif = '65117125P';
const spousePensionInput = '[data-cy="Spouse Pension_input"]';
const spousePension = '120';
const addRelative = '[data-cy="addRelative"]'; const addRelative = '[data-cy="addRelative"]';
const isDescendantSelect = '[data-cy="Descendant/Ascendant"]';
const Descendant = 'Descendiente';
const birthedInput = '[data-cy="Birth Year_input"]';
const birthed = '2002';
const adoptionYearInput = '[data-cy="Adoption Year_input"]';
const adoptionYear = '2004';
const saveRelative = '[data-cy="workerPitRelativeSaveBtn"]'; const saveRelative = '[data-cy="workerPitRelativeSaveBtn"]';
const savePIT = '#st-actions > .q-btn-group > .q-btn--standard'; const savePIT = '#st-actions > .q-btn-group > .q-btn--standard';
@ -24,15 +10,15 @@ describe('WorkerPit', () => {
}); });
it('complete PIT', () => { it('complete PIT', () => {
cy.get(familySituationInput).type(familySituation); cy.dataCy('familySituation').type('1');
cy.get(childPensionInput).type(childPension); cy.dataCy('childPension').type('120');
cy.get(spouseNifInput).type(spouseNif); cy.dataCy('spouseNif').type('65117125P');
cy.get(spousePensionInput).type(spousePension); cy.dataCy('spousePension').type('120');
cy.get(savePIT).click(); cy.get(savePIT).click();
cy.get(addRelative).click(); cy.get(addRelative).click();
cy.get(isDescendantSelect).type(Descendant); cy.dataCy('Descendant/Ascendant').type('Descendiente');
cy.get(birthedInput).type(birthed); cy.dataCy('birthed').type('2002');
cy.get(adoptionYearInput).type(adoptionYear); cy.dataCy('adoptionYear').type('2004');
cy.get(saveRelative).click(); cy.get(saveRelative).click();
}); });
}); });

View File

@ -1,4 +1,6 @@
describe('WorkerSummary', () => { describe('WorkerSummary', () => {
const departmentDescriptor = ':nth-child(1) > :nth-child(3) > .value > .link';
const roleDescriptor = ':nth-child(3) > :nth-child(4) > .value > .link';
beforeEach(() => { beforeEach(() => {
cy.viewport(1280, 720); cy.viewport(1280, 720);
cy.login('developer'); cy.login('developer');
@ -10,7 +12,17 @@ describe('WorkerSummary', () => {
cy.get('.summaryHeader > div').should('have.text', '19 - salesboss salesboss'); cy.get('.summaryHeader > div').should('have.text', '19 - salesboss salesboss');
cy.get(':nth-child(1) > :nth-child(2) > .value > span').should( cy.get(':nth-child(1) > :nth-child(2) > .value > span').should(
'have.text', 'have.text',
'salesBossNick' 'salesBossNick',
); );
}); });
it('should try descriptors', () => {
cy.waitForElement('.summaryHeader');
cy.get(departmentDescriptor).click();
cy.get('.descriptor').should('be.visible');
cy.get('.q-item > .q-item__label').should('include.text', '43');
cy.get(roleDescriptor).click();
cy.get('.descriptor').should('be.visible');
cy.get('.q-item > .q-item__label').should('include.text', '19');
});
}); });