(period)
| 20 | global.IS_REACT_ACT_ENVIRONMENT = true; |
| 21 | |
| 22 | function sleep(period) { |
| 23 | return new Promise(resolve => { |
| 24 | setTimeout(() => { |
| 25 | resolve(true); |
| 26 | }, period); |
| 27 | }); |
| 28 | } |
| 29 | |
| 30 | describe('React.act()', () => { |
| 31 | afterEach(() => { |
no test coverage detected