Add test for addon-notes

This commit is contained in:
Hypnosphi 2018-02-17 19:23:12 +03:00
parent 82969cd348
commit 4a342a3e5b
2 changed files with 19 additions and 5 deletions

View File

@ -0,0 +1,19 @@
import addons from '@storybook/addons';
import { withNotes } from '..';
jest.mock('@storybook/addons');
describe('Storybook Addon Notes', () => {
it('should inject info', () => {
const channel = { emit: jest.fn() };
addons.getChannel.mockReturnValue(channel);
const getStory = jest.fn();
const context = {};
const decoratedStory = withNotes('hello')(getStory);
decoratedStory(context);
expect(channel.emit).toHaveBeenCalledWith('storybook/notes/add_notes', 'hello');
expect(getStory).toHaveBeenCalledWith(context);
});
});

View File

@ -1,5 +0,0 @@
const { describe, it } = global;
describe('Storybook Addon Notes', () => {
it('should have some tests');
});