EvalueTonSavoir/server/__mocks__/bcrypt.js

7 lines
159 B
JavaScript
Raw Normal View History

2024-10-01 11:30:26 -04:00
const mockBcrypt = {
hash: jest.fn().mockResolvedValue('hashedPassword'),
compare: jest.fn().mockResolvedValue(true),
};
module.exports = mockBcrypt;