Merge branch 'dev' of https: refs #8078//gitea.verdnatura.es/verdnatura/salix-front into 8078-enableMultiSelection
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-10-29 09:27:30 +01:00
commit 71420da586
2 changed files with 3 additions and 6 deletions

View File

@ -121,7 +121,7 @@ const entriesTableColumns = computed(() => [
:loading="isLoading" :loading="isLoading"
@click=" @click="
openReport( openReport(
`Entries/${props.row.id}/buy-label` `Entries/${props.row.id}/buy-label-supplier`
) )
" "
unelevated unelevated

View File

@ -13,7 +13,7 @@ describe('Logout', () => {
}); });
describe('not user', () => { describe('not user', () => {
beforeEach(() => { beforeEach(() => {
cy.intercept('GET', '**DefaultViewConfigs**', { cy.intercept('GET', '**StarredModules**', {
statusCode: 401, statusCode: 401,
body: { body: {
error: { error: {
@ -29,10 +29,7 @@ describe('Logout', () => {
it('when token not exists', () => { it('when token not exists', () => {
cy.get('.q-list > [href="#/item"]').click(); cy.get('.q-list > [href="#/item"]').click();
cy.get('.q-notification__message').should( cy.checkNotification('Authorization Required');
'have.text',
'Authorization Required'
);
}); });
}); });
}); });