chromium/third_party/blink/web_tests/http/tests/devtools/sources/debugger-async/async-await/async-pause-on-exception-expected.txt

Tests that pause on promise rejection works.

=== Pausing only on uncaught exceptions ===
Set timer for test function.
Call stack:
    0) testFunction (async-pause-on-exception.js:45)
    [setTimeout]
    0) scheduleTestFunction <omitted>
    <... skipped remaining frames ...>
Paused on promise rejectionError: uncaught

=== Pausing on all exceptions ===
Set timer for test function.
Call stack:
    0) testFunction (async-pause-on-exception.js:44)
    [setTimeout]
    0) scheduleTestFunction <omitted>
    <... skipped remaining frames ...>
Paused on promise rejectionError: caught
Call stack:
    0) testFunction (async-pause-on-exception.js:45)
    [setTimeout]
    0) scheduleTestFunction <omitted>
    <... skipped remaining frames ...>
Paused on promise rejectionError: uncaught