mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
import { useInboxHotKeys } from '../useInboxHotKeys';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useRoute } from 'vue-router';
|
|
import { isAInboxViewRoute } from 'dashboard/helper/routeHelpers';
|
|
|
|
vi.mock('vue-i18n');
|
|
vi.mock('vue-router');
|
|
vi.mock('dashboard/helper/routeHelpers');
|
|
vi.mock('shared/helpers/mitt');
|
|
|
|
describe('useInboxHotKeys', () => {
|
|
beforeEach(() => {
|
|
useI18n.mockReturnValue({ t: vi.fn(key => key) });
|
|
useRoute.mockReturnValue({ name: 'inbox_dashboard' });
|
|
isAInboxViewRoute.mockReturnValue(true);
|
|
});
|
|
|
|
it('should return inbox hot keys when on an inbox view route', () => {
|
|
const { inboxHotKeys } = useInboxHotKeys();
|
|
expect(inboxHotKeys.value.length).toBeGreaterThan(0);
|
|
expect(inboxHotKeys.value[0].id).toBe('snooze_notification');
|
|
});
|
|
|
|
it('should return an empty array when not on an inbox view route', () => {
|
|
isAInboxViewRoute.mockReturnValue(false);
|
|
const { inboxHotKeys } = useInboxHotKeys();
|
|
expect(inboxHotKeys.value).toEqual([]);
|
|
});
|
|
|
|
it('should have the correct structure for snooze actions', () => {
|
|
const { inboxHotKeys } = useInboxHotKeys();
|
|
const snoozeNotificationAction = inboxHotKeys.value.find(
|
|
action => action.id === 'snooze_notification'
|
|
);
|
|
expect(snoozeNotificationAction).toBeDefined();
|
|
});
|
|
});
|