fbredius/storybook

View on GitHub
lib/addons/src/storybook-channel-mock.ts

Summary

Maintainability
A
0 mins
Test Coverage
import Channel from '@storybook/channels';

export function mockChannel() {
  const transport = {
    setHandler: () => {},
    send: () => {},
  };

  return new Channel({ transport });
}