You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionsleep(ms){returnnewPromise(resolve=>setTimeout(resolve,ms));}describe("--verbose does not print each test run",()=>{test('Running test 1...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 2...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 3...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 4...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 5...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 6...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 7...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 8...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 9...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 10...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 11...',async()=>{awaitsleep(2000);expect(3).toBe(3);});test('Running test 12...',async()=>{awaitsleep(2000);expect(3).toBe(3);});});
Expected behavior
jest --verbose --runInBand
Print: ✓ Running test 1... after running test 1
Print: ✓ Running test 2... after running test 2
Print: ✓ Running test 3... after running test 2
...
Actual behavior
jest --verbose --runInBand
Prints at once all tests run after running all tests:
✓ Running test 1... (2026ms)
✓ Running test 2... (2015ms)
✓ Running test 3... (2004ms)
✓ Running test 4... (2003ms)
✓ Running test 5... (2056ms)
✓ Running test 6... (2095ms)
✓ Running test 7... (2006ms)
✓ Running test 8... (2006ms)
✓ Running test 9... (2002ms)
✓ Running test 10... (2005ms)
✓ Running test 11... (2003ms)
✓ Running test 12... (2008ms)
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.
🐛 Bug Report
https://repl.it/@evandrocoan/GlossyLustrousFields
Expected behavior
jest --verbose --runInBand
Print:
✓ Running test 1...
after running test 1Print: ✓
Running test 2...
after running test 2Print:
✓ Running test 3...
after running test 2...
Actual behavior
jest --verbose --runInBand
Prints at once all tests run after running all tests:
envinfo
The text was updated successfully, but these errors were encountered: