mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
1f3c4c9763
Fixes #22837
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
Deno.test(function throws() {
|
|
// Leak
|
|
setTimeout(() => {}, 60_000);
|
|
// But the exception should mask the leak
|
|
throw new Error("Throws");
|
|
});
|