diff --git a/packages/core/jest/mock.js b/packages/core/jest/mock.js index fca9a7e4e..193c98a36 100644 --- a/packages/core/jest/mock.js +++ b/packages/core/jest/mock.js @@ -30,6 +30,9 @@ module.exports = { setUser: jest .fn() .mockImplementation(() => new Promise(resolve => resolve())), + addUserExtraInfo: jest + .fn() + .mockImplementation(() => new Promise(resolve => resolve())), setAttributes: jest .fn() .mockImplementation(() => new Promise(resolve => resolve())),