mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
f526513d74
This commit updates unhelpful messages that are raised when event loop stalls on unresolved top-level promises. Instead of "Module evaluation is still pending but there are no pending ops or dynamic imports. This situation is often caused by unresolved promises." and "Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promises." we are now printing a message like: error: Top-level await promise never resolved [SOURCE LINE] ^ at [FUNCTION NAME] ([FILENAME]) eg: error: Top-level await promise never resolved await new Promise((_resolve, _reject) => {}); ^ at <anonymous> (file:///Users/ib/dev/deno/cli/tests/testdata/test/unresolved_promise.ts:1:1) Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
10 lines
435 B
Text
10 lines
435 B
Text
[WILDCARD]
|
|
./test/unresolved_promise.ts (uncaught error)
|
|
error: Top-level await promise never resolved
|
|
await new Promise((_resolve, _reject) => {});
|
|
^
|
|
at <anonymous> ([WILDCARD]/test/unresolved_promise.ts:1:1)
|
|
This error was not caught from a test and caused the test runner to fail on the referenced module.
|
|
It most likely originated from a dangling promise, event/timeout handler or top-level code.
|
|
[WILDCARD]
|
|
error: Test failed
|