11 lines
449 B
TypeScript
11 lines
449 B
TypeScript
import { ICryptoRepository } from '../src';
|
|
|
|
export const newCryptoRepositoryMock = (): jest.Mocked<ICryptoRepository> => {
|
|
return {
|
|
randomBytes: jest.fn().mockReturnValue(Buffer.from('random-bytes', 'utf8')),
|
|
compareBcrypt: jest.fn().mockReturnValue(true),
|
|
hashBcrypt: jest.fn().mockImplementation((input) => Promise.resolve(`${input} (hashed)`)),
|
|
hashSha256: jest.fn().mockImplementation((input) => `${input} (hashed)`),
|
|
};
|
|
};
|