ASC.Web.Common: Layout: hover delay increased

This commit is contained in:
Andrey Savihin 2019-12-23 15:51:08 +03:00
parent 56374f8a72
commit 445fd9c1c8
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ class Layout extends React.Component {
isNavOpened: true,
isAsideVisible: false
});
}, 300);
}, 1000);
};
handleNavMouseLeave = () => {

View File

@ -136,7 +136,7 @@ describe('<Layout />', () => {
wrapper.handleNavMouseEnter();
await later(400);
await later(1100);
expect(wrapper.state.isNavOpened).toBe(true);
});