mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
MM-54349 Increase timeout for ConfirmModalRedux test (#24607)
This commit is contained in:
parent
53a0f8da27
commit
e43096b98b
@ -30,7 +30,7 @@ describe('ConfirmModalRedux', () => {
|
||||
wrapper.find('#confirmModalButton').simulate('click');
|
||||
|
||||
expect(wrapper.find(Modal).prop('show')).toBe(false);
|
||||
}, 1000);
|
||||
}, 5000);
|
||||
|
||||
test('should call onExited after cancelling', (done) => {
|
||||
baseProps.onExited.mockImplementation(() => done());
|
||||
@ -47,5 +47,5 @@ describe('ConfirmModalRedux', () => {
|
||||
wrapper.find('#cancelModalButton').simulate('click');
|
||||
|
||||
expect(wrapper.find(Modal).prop('show')).toBe(false);
|
||||
}, 1000);
|
||||
}, 5000);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user