6 lines
130 B
Vue
6 lines
130 B
Vue
|
export default jest.fn().mockImplementation(() => ({
|
||
|
postMessage: jest.fn(),
|
||
|
onmessage: jest.fn(),
|
||
|
onerror: jest.fn(),
|
||
|
}));
|