From 84fccdd4704c3fa872255b13b0f97fbe1be19bb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Fri, 7 Feb 2020 11:17:21 +0100 Subject: [PATCH] Fix tests --- .../NotificationsTable/NotificationsTable.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() }) })