mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
|
import process from "node:process";
|
||
|
import { strictEqual } from "node:assert";
|
||
|
|
||
|
const error = new Error("thrown from next tick");
|
||
|
|
||
|
process.on("uncaughtException", (caught) => {
|
||
|
strictEqual(caught, error);
|
||
|
console.log("caught", caught);
|
||
|
});
|
||
|
|
||
|
process.nextTick(() => {
|
||
|
throw error;
|
||
|
});
|