mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
80ed54a4b6
In order for test cases to pass regardless of each individual's environment, this commit adds calls to `slice` method when printing the filenames so we can avoid getting `console.log` to truncate them. Fixes #16305
21 lines
463 B
TypeScript
21 lines
463 B
TypeScript
addEventListener("error", (event) => {
|
|
console.log({
|
|
cancelable: event.cancelable,
|
|
message: event.message,
|
|
filename: event.filename?.slice?.(-100),
|
|
lineno: event.lineno,
|
|
colno: event.colno,
|
|
error: event.error,
|
|
});
|
|
event.preventDefault();
|
|
});
|
|
|
|
onerror = (event) => {
|
|
console.log("onerror() called", event.error);
|
|
};
|
|
|
|
queueMicrotask(() => {
|
|
throw new Error("foo");
|
|
});
|
|
console.log(1);
|
|
Promise.resolve().then(() => console.log(2));
|