mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import Channel from '@storybook/channels';
|
|
|
|
export function mockChannel() {
|
|
const transport = {
|
|
setHandler: () => {},
|
|
send: () => {},
|
|
};
|
|
|
|
return new Channel({ transport });
|
|
}
|