when run the test and expectation failed,this test will be blocked until timeout,not failed immediately. ```js test('expect failed immediately in async test', (done) => { setTimeout(() => { expect(false).toBe(true); done(); }); }); ```
when run the test and expectation failed,this test will be blocked until timeout,not failed immediately.