forked from podefr/react-debounce-render
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from 'react'; | ||
import enzyme from 'enzyme'; | ||
import Adapter from 'enzyme-adapter-react-16'; | ||
|
||
import App from './App'; | ||
|
||
enzyme.configure({ adapter: new Adapter() }); | ||
|
||
describe('Given App is rendered and unmounted before final debounced render', () => { | ||
let wrapper; | ||
|
||
beforeEach(() => { | ||
jest.useFakeTimers(); | ||
wrapper = enzyme.mount(<App />); | ||
}); | ||
|
||
it('does not throw an unmounted component error', async () => { | ||
return new Promise((resolve) => { | ||
// unmount after debounced execution is queued, but before it gets executed. | ||
setTimeout(() => { | ||
wrapper.unmount(); | ||
}, 95); | ||
|
||
setTimeout(() => { | ||
resolve() | ||
}, 110); | ||
jest.runAllTimers(); | ||
}); | ||
}) | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters