6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
|
import { jest } from '@jest/globals';
|
||
|
|
||
|
jest.mock('@plasmohq/messaging', () => ({
|
||
|
sendToContentScript: jest.fn(),
|
||
|
}));
|