Run prettier

This commit is contained in:
Hypnosphi 2018-04-27 22:05:13 +03:00
parent f5b11b8ad1
commit 08f102f397
2 changed files with 19 additions and 12 deletions

View File

@ -9,14 +9,16 @@ describe('PropTable', () => {
const singleLine = 'Foo bar baz';
const unixMultiLineText = 'foo \n bar \n baz';
const windowsMultiLineText = 'foo \r bar \r baz';
const propDefinitions = [{
defaultValue: undefined,
description: '',
propType: { name: 'string' },
property: 'foo',
required: false
}];
const FooComponent = () => (<div />);
const propDefinitions = [
{
defaultValue: undefined,
description: '',
propType: { name: 'string' },
property: 'foo',
required: false,
},
];
const FooComponent = () => <div />;
const propTableProps = {
type: FooComponent,
maxPropArrayLength: 5,
@ -26,13 +28,13 @@ describe('PropTable', () => {
};
it('should include all propTypes by default', () => {
const wrapper = mount(<PropTable { ...propTableProps } />);
const wrapper = mount(<PropTable {...propTableProps} />);
expect(wrapper).toMatchSnapshot();
});
it('should exclude excluded propTypes', () => {
const props = { ...propTableProps, excludedPropTypes: ['foo'] };
const wrapper = mount(<PropTable { ...props } />);
const wrapper = mount(<PropTable {...props} />);
expect(wrapper).toMatchSnapshot();
});

View File

@ -331,7 +331,12 @@ class Story extends React.Component {
const array = Array.from(types.keys());
array.sort((a, b) => getName(a) > getName(b));
const { maxPropObjectKeys, maxPropArrayLength, maxPropStringLength, excludedPropTypes } = this.props;
const {
maxPropObjectKeys,
maxPropArrayLength,
maxPropStringLength,
excludedPropTypes,
} = this.props;
const propTables = array.map((type, i) => (
// eslint-disable-next-line react/no-array-index-key
<div key={`${getName(type)}_${i}`}>
@ -390,7 +395,7 @@ Story.propTypes = {
maxPropObjectKeys: PropTypes.number.isRequired,
maxPropArrayLength: PropTypes.number.isRequired,
maxPropStringLength: PropTypes.number.isRequired,
excludedPropTypes: PropTypes.arrayOf(PropTypes.string)
excludedPropTypes: PropTypes.arrayOf(PropTypes.string),
};
Story.defaultProps = {