OLD | NEW |
---|---|
1 CONSOLE ERROR: line 37: Uncaught (in promise) Error: uncaught | 1 CONSOLE ERROR: line 37: Uncaught (in promise) Error: uncaught |
2 CONSOLE ERROR: line 37: Uncaught (in promise) Error: uncaught | 2 CONSOLE ERROR: line 37: Uncaught (in promise) Error: uncaught |
3 Tests that pause on promise rejection works. | 3 Tests that pause on promise rejection works. |
4 | 4 |
5 === Pausing only on uncaught exceptions === | 5 === Pausing only on uncaught exceptions === |
6 Set timer for test function. | 6 Set timer for test function. |
7 Call stack: | 7 Call stack: |
8 0) testFunction (async-pause-on-exception.html:37) | 8 0) testFunction (async-pause-on-exception.html:37) |
9 [setTimeout] | |
10 0) scheduleTestFunction (debugger-test.js:3) | |
dgozman
2017/04/21 23:39:17
Why suddenly this?
kozy
2017/04/22 00:02:57
We skip all frames after frame with functionName =
| |
11 <... skipped remaining frames ...> | |
9 Paused on promise rejectionError: uncaught | 12 Paused on promise rejectionError: uncaught |
10 | 13 |
11 === Pausing on all exceptions === | 14 === Pausing on all exceptions === |
12 Set timer for test function. | 15 Set timer for test function. |
13 Call stack: | 16 Call stack: |
14 0) testFunction (async-pause-on-exception.html:36) | 17 0) testFunction (async-pause-on-exception.html:36) |
18 [setTimeout] | |
19 0) scheduleTestFunction (debugger-test.js:3) | |
20 <... skipped remaining frames ...> | |
15 Paused on promise rejectionError: caught | 21 Paused on promise rejectionError: caught |
16 Call stack: | 22 Call stack: |
17 0) testFunction (async-pause-on-exception.html:37) | 23 0) testFunction (async-pause-on-exception.html:37) |
24 [setTimeout] | |
25 0) scheduleTestFunction (debugger-test.js:3) | |
26 <... skipped remaining frames ...> | |
18 Paused on promise rejectionError: uncaught | 27 Paused on promise rejectionError: uncaught |
19 | 28 |
OLD | NEW |