diff --git a/webapp/components/NotificationsTable/NotificationsTable.spec.js b/webapp/components/NotificationsTable/NotificationsTable.spec.js index 259b5b8ba..d42c0126d 100644 --- a/webapp/components/NotificationsTable/NotificationsTable.spec.js +++ b/webapp/components/NotificationsTable/NotificationsTable.spec.js @@ -74,15 +74,15 @@ describe('NotificationsTable.vue', () => { }) it('for user', () => { - expect(wrapper.vm.fields.user).toBeTruthy() + expect(wrapper.vm.fields.triggerer).toBeTruthy() }) it('for post', () => { - expect(wrapper.vm.fields.post).toBeTruthy() + expect(wrapper.vm.fields.title).toBeTruthy() }) it('for content', () => { - expect(wrapper.vm.fields.content).toBeTruthy() + expect(wrapper.vm.fields.metadata).toBeTruthy() }) })