mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
b53997273d
This commit makes the errors produced from the resource sanitizer much more human readable. It does this by using real words rather than our "resource names" when referring to resources, and by giving helpful hints on how to clean up each of the resources.
4 lines
91 B
TypeScript
4 lines
91 B
TypeScript
Deno.test("leak", function () {
|
|
Deno.openSync("001_hello.js");
|
|
Deno.stdin.close();
|
|
});
|