diff options
| author | Henry Jameson <me@hjkos.com> | 2023-11-19 17:27:51 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2023-11-19 17:27:51 +0200 |
| commit | cdc0959135a1bb9c3fd0c4750a9cb6ede5d189cb (patch) | |
| tree | 71b0400356dada7f30a932314a837f3b674d4fc1 /test/unit | |
| parent | c0e2ba37c828dc5d34cbdb366f48b721e645f5b5 (diff) | |
fix tests
Diffstat (limited to 'test/unit')
| -rw-r--r-- | test/unit/specs/services/notification_utils/notification_utils.spec.js | 66 |
1 files changed, 31 insertions, 35 deletions
diff --git a/test/unit/specs/services/notification_utils/notification_utils.spec.js b/test/unit/specs/services/notification_utils/notification_utils.spec.js index 00628d83..ba7f7d75 100644 --- a/test/unit/specs/services/notification_utils/notification_utils.spec.js +++ b/test/unit/specs/services/notification_utils/notification_utils.spec.js @@ -5,26 +5,24 @@ describe('NotificationUtils', () => { it('should return sorted notifications with configured types', () => { const store = { state: { - statuses: { - notifications: { - data: [ - { - id: 1, - action: { id: '1' }, - type: 'like' - }, - { - id: 2, - action: { id: '2' }, - type: 'mention' - }, - { - id: 3, - action: { id: '3' }, - type: 'repeat' - } - ] - } + notifications: { + data: [ + { + id: 1, + action: { id: '1' }, + type: 'like' + }, + { + id: 2, + action: { id: '2' }, + type: 'mention' + }, + { + id: 3, + action: { id: '3' }, + type: 'repeat' + } + ] }, config: { notificationVisibility: { @@ -55,21 +53,19 @@ describe('NotificationUtils', () => { it('should return only notifications not marked as seen', () => { const store = { state: { - statuses: { - notifications: { - data: [ - { - action: { id: '1' }, - type: 'like', - seen: false - }, - { - action: { id: '2' }, - type: 'mention', - seen: true - } - ] - } + notifications: { + data: [ + { + action: { id: '1' }, + type: 'like', + seen: false + }, + { + action: { id: '2' }, + type: 'mention', + seen: true + } + ] }, config: { notificationVisibility: { |
