8231_testToMaster_2448 #997

Merged
alexm merged 400 commits from 8231_testToMaster_2448 into master 2024-11-26 06:28:29 +00:00
2 changed files with 3 additions and 6 deletions
Showing only changes of commit 71420da586 - Show all commits

View File

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

View File

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