Skip to content

Commit

Permalink
fix: add missing mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIhnatsiuk committed Sep 25, 2024
1 parent dcc9c80 commit 9f550ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions jest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const SecureStorage = {
getAllItems: jest.fn().mockResolvedValue([{ key: 'key', value: 'value' }]),
removeItem: jest.fn().mockResolvedValue(true),
getAllKeys: jest.fn().mockResolvedValue(['key']),
hasItem: jest.fn().mockResolvedValue(true),
};

const mock = {
Expand Down

0 comments on commit 9f550ae

Please sign in to comment.