Merge branch 'master' into feature/Wizard

This commit is contained in:
Artem Tarasov 2020-07-24 08:49:38 +03:00
commit 64d488a550
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "asc-web-components",
"version": "1.0.369",
"version": "1.0.370",
"description": "Ascensio System SIA component library",
"license": "AGPL-3.0",
"main": "dist/asc-web-components.js",

View File

@ -16,7 +16,7 @@ describe('<FileInput />', () => {
const wrapper = shallow(<FileInput onInput={onInput} />).instance();
const shouldUpdate = wrapper.shouldComponentUpdate(wrapper.props);
const shouldUpdate = wrapper.shouldComponentUpdate(wrapper.props, wrapper.state);
expect(shouldUpdate).toBe(false);
});