diff --git a/frontend/src/views/Pages/UserProfileTransactionList.spec.js b/frontend/src/views/Pages/UserProfileTransactionList.spec.js index 44af57855..61a23345b 100644 --- a/frontend/src/views/Pages/UserProfileTransactionList.spec.js +++ b/frontend/src/views/Pages/UserProfileTransactionList.spec.js @@ -19,6 +19,15 @@ describe('UserProfileTransactionList', () => { const mocks = { $t: jest.fn((t) => t), $n: jest.fn((n) => String(n)), + $d: jest.fn((d) => d), + $i18n: { + locale: jest.fn(() => 'en'), + }, + $store: { + state: { + sessionId: 1, + }, + }, } const Wrapper = () => {