PromiseRejectionTracking.baseline 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Executing test #1 - Reject promise with no reactions.
  2. Uncaught promise rejection
  3. Rejection from test 1
  4. Executing test #2 - Reject promise with a catch reaction only.
  5. Executing test #3 - Reject promise with catch and then reactions.
  6. Executing test #4 - Reject promise then add a catch afterwards.
  7. Uncaught promise rejection
  8. Rejection from test 4
  9. Promise rejection handled
  10. Rejection from test 4
  11. Executing test #5 - Reject promise then add two catches afterwards.
  12. Uncaught promise rejection
  13. Rejection from test 5
  14. Promise rejection handled
  15. Rejection from test 5
  16. Executing test #6 - Async function that throws.
  17. Uncaught promise rejection
  18. Rejection from test 6
  19. Executing test #7 - Async function that throws but is caught.
  20. Uncaught promise rejection
  21. Rejection from test 7
  22. Promise rejection handled
  23. Rejection from test 7
  24. Executing test #8 - Async function that awaits a function that throws.
  25. Uncaught promise rejection
  26. Rejection from test 8
  27. Promise rejection handled
  28. Rejection from test 8
  29. Executing test #9 - Reject a handled promise then handle one of the handles but not the other.
  30. Executing test #10 - Reject a handled promise and don't handle either path.
  31. Begin async results:
  32. Uncaught promise rejection
  33. Rejection from test 8
  34. Uncaught promise rejection
  35. Rejection from test 9
  36. Uncaught promise rejection
  37. Rejection from test 10
  38. Uncaught promise rejection
  39. Rejection from test 10
  40. Promise rejection handled
  41. Rejection from test 9
  42. Uncaught promise rejection
  43. Rejection from test 9