Merge branch 'dev' into 8001-expeditionGrafana
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-10-29 08:07:07 +00:00
commit 8525219154
2 changed files with 3 additions and 5 deletions

View File

@ -34,6 +34,7 @@ const emit = defineEmits(['confirm', 'cancel', ...useDialogPluginComponent.emits
const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } =
useDialogPluginComponent();
defineExpose({ show: () => dialogRef.value.show(), hide: () => dialogRef.value.hide() });
const title = props.title || t('Confirm');
const message =

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');
});
});
});