test: refs #6695 better stockBought
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
0e4c4a33de
commit
62682237e4
|
@ -179,6 +179,7 @@ function round(value) {
|
||||||
@click="openDialog()"
|
@click="openDialog()"
|
||||||
:title="t('entryStockBought.editTravel')"
|
:title="t('entryStockBought.editTravel')"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
data-cy="editTravelBtn"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
|
@ -26,11 +26,12 @@ describe('EntryStockBought', () => {
|
||||||
cy.get(':nth-child(2) > .sticky > .q-btn > .q-btn__content > .q-icon').click();
|
cy.get(':nth-child(2) > .sticky > .q-btn > .q-btn__content > .q-icon').click();
|
||||||
cy.get('.q-table__bottom.row.items-center.q-table__bottom--nodata').should(
|
cy.get('.q-table__bottom.row.items-center.q-table__bottom--nodata').should(
|
||||||
'have.text',
|
'have.text',
|
||||||
'warningNo data available'
|
'warningNo data available',
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
it('Should edit travel m3 and refresh', () => {
|
it('Should edit travel m3 and refresh', () => {
|
||||||
cy.get('.vn-row > div > .q-btn > .q-btn__content > .q-icon').click();
|
cy.waitForElement('[data-cy="editTravelBtn"]');
|
||||||
|
cy.get('[data-cy="editTravelBtn"]').click();
|
||||||
cy.get('input[aria-label="m3"]').clear();
|
cy.get('input[aria-label="m3"]').clear();
|
||||||
cy.get('input[aria-label="m3"]').type('60');
|
cy.get('input[aria-label="m3"]').type('60');
|
||||||
cy.get('.q-mt-lg > .q-btn--standard > .q-btn__content > .block').click();
|
cy.get('.q-mt-lg > .q-btn--standard > .q-btn__content > .block').click();
|
||||||
|
|
Loading…
Reference in New Issue