mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Add test for addon-notes
This commit is contained in:
parent
82969cd348
commit
4a342a3e5b
19
addons/notes/src/__tests__/index.js
Normal file
19
addons/notes/src/__tests__/index.js
Normal 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);
|
||||
});
|
||||
});
|
@ -1,5 +0,0 @@
|
||||
const { describe, it } = global;
|
||||
|
||||
describe('Storybook Addon Notes', () => {
|
||||
it('should have some tests');
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user