storybook/addons/info/src/index.test.js
Oleg Proskurin 868dcedd12 Add test
2017-07-11 22:31:28 +03:00

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);
});
});