mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
|
Deno.test(function throws() {
|
||
|
// Leak
|
||
|
setTimeout(() => {}, 60_000);
|
||
|
// But the exception should mask the leak
|
||
|
throw new Error("Throws");
|
||
|
});
|