blob: e92e1b3aafc8be8cf1ce2ed3c19d224d9f6f7279 [file] [log] [blame]
CONSOLE MESSAGE: line 36: testThrowingInPromise
CONSOLE MESSAGE: line 38: in promise
CONSOLE MESSAGE: line 7: throwing TestError
CONSOLE MESSAGE: line 8: Unhandled Promise Rejection: TestError
CONSOLE MESSAGE: line 55: testThrowingInPromiseThen
CONSOLE MESSAGE: line 57: in promise
CONSOLE MESSAGE: line 60: in promise.then
CONSOLE MESSAGE: line 7: throwing TestError
CONSOLE MESSAGE: line 8: Unhandled Promise Rejection: TestError
CONSOLE MESSAGE: line 66: testThrowingInPromiseThenWithCatch
CONSOLE MESSAGE: line 68: in promise
CONSOLE MESSAGE: line 71: in promise.then
CONSOLE MESSAGE: line 7: throwing TestError
CONSOLE MESSAGE: line 74: in promise.catch
CONSOLE MESSAGE: line 75: DONE
CONSOLE MESSAGE: line 44: testThrowingInPromiseWithCatch
CONSOLE MESSAGE: line 46: in promise
CONSOLE MESSAGE: line 7: throwing TestError
CONSOLE MESSAGE: line 49: in promise.catch
CONSOLE MESSAGE: line 50: DONE
CONSOLE MESSAGE: line 80: testThrowingInPromiseWithRethrowInCatch
CONSOLE MESSAGE: line 82: in promise
CONSOLE MESSAGE: line 7: throwing TestError
CONSOLE MESSAGE: line 85: in promise.catch
CONSOLE MESSAGE: line 86: Unhandled Promise Rejection: TestError
Checking no pauses within Promises when pausing on uncaught exceptions.
== Running test suite: BreakOnUncaughtException.Promise
-- Running test case: BreakOnUncaughtException.Promise.ExceptionInPromiseConstructor
PASS: Should not pause, exception is 'caught' by Promise.
-- Running test case: BreakOnUncaughtException.Promise.ExceptionInPromiseThenWithoutCatch
PASS: Should not pause, exception is 'caught' by Promise.
-- Running test case: BreakOnUncaughtException.Promise.ExceptionInPromiseThenWithCatch
PASS: Should not pause, exception is 'caught' by Promise.
-- Running test case: BreakOnUncaughtException.Promise.ExceptionInPromiseCatch
PASS: Should not pause, exception is 'caught' by Promise.
-- Running test case: BreakOnUncaughtException.Promise.ExceptionInPromiseThenAndRethrownInCatch
PASS: Should not pause, exception is 'caught' by Promise.