1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/test/jest/background.js

6 lines
198 B
JavaScript
Raw Normal View History

import { _setBackgroundConnection } from '../../ui/store/action-queue';
export const setBackgroundConnection = (backgroundConnection = {}) => {
_setBackgroundConnection(backgroundConnection);
};