From e0b31a8e4daa01d136cc42504fb2ccfde305b8b7 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 17 Aug 2021 15:45:54 +0200 Subject: [PATCH] stub GdtTransactionList --- frontend/src/views/Pages/UserProfileTransactionList.spec.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/Pages/UserProfileTransactionList.spec.js b/frontend/src/views/Pages/UserProfileTransactionList.spec.js index 61a23345b..93a5eb40f 100644 --- a/frontend/src/views/Pages/UserProfileTransactionList.spec.js +++ b/frontend/src/views/Pages/UserProfileTransactionList.spec.js @@ -30,8 +30,12 @@ describe('UserProfileTransactionList', () => { }, } + const stubs = { + GdtTransactionList: true, + } + const Wrapper = () => { - return mount(UserProfileTransactionList, { localVue, mocks }) + return mount(UserProfileTransactionList, { localVue, mocks, stubs }) } describe('mount', () => {