Renamed createChannel to mockChannel in storybook-mock-channel

This commit is contained in:
Kai Röder 2018-12-21 09:14:46 +01:00
parent cd7eb71b6e
commit 6f6b119031
3 changed files with 3 additions and 2 deletions

View File

@ -75,4 +75,6 @@ function getAddonsStore() {
// Exporting this twice in order to to be able to import it like { addons } instead of 'addons'
// prefer import { addons } from '@storybook/addons' over import addons from '@storybook/addons'
//
// See public_api.ts
export const addons = getAddonsStore();

View File

@ -1,6 +1,6 @@
import Channel from '@storybook/channels';
export function createChannel() {
export function mockChannel() {
const transport = {
setHandler: () => {},
send: () => {},

View File

@ -15,7 +15,6 @@
},
"license": "MIT",
"main": "dist/index.js",
"jsnext:main": "src/index.ts",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},