deno/tests/specs/test/sanitizer_with_error/main.js
2024-03-13 20:49:54 -06:00

6 lines
149 B
JavaScript

Deno.test(function throws() {
// Leak
setTimeout(() => {}, 60_000);
// But the exception should mask the leak
throw new Error("Throws");
});