mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 21:00:13 +01:00
bff17c6873
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
const originalModule = jest.requireActual('react-router-dom');
|
|||
|
|||
module.exports = {
|
|||
...originalModule,
|
|||
useHistory: jest.fn(),
|
|||
useLocation: jest.fn(() => {
|
|||
return {
|
|||
pathname: '/swaps/build-quote',
|
|||
};
|
|||
}),
|
|||
};
|