mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
// This file is for Jest-specific setup only and runs before our Jest tests.
|
|
import '@testing-library/jest-dom';
|
|
|
|
jest.mock('webextension-polyfill', () => {
|
|
return {
|
|
runtime: {
|
|
getManifest: () => ({ manifest_version: 2 }),
|
|
},
|
|
};
|
|
});
|