mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:41:06 +08:00
24 lines
648 B
JavaScript
24 lines
648 B
JavaScript
/* global document */
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import AddonInfo, { withInfo } from './';
|
|
|
|
describe('addon Info', () => {
|
|
const story = context =>
|
|
<div>
|
|
It's a {context.story} story
|
|
</div>;
|
|
const api = {
|
|
add: (name, fn) => fn({ kind: 'addon_info', story: 'jest_test' }),
|
|
};
|
|
it('should render <Info />', () => {
|
|
const Info = withInfo('Test Info')(story);
|
|
ReactDOM.render(<Info />, document.createElement('div'));
|
|
});
|
|
it('should show deprecation warning', () => {
|
|
const addWithInfo = AddonInfo.addWithInfo.bind(api);
|
|
addWithInfo('jest', 'test info', story);
|
|
});
|
|
});
|