blob: d1b554adfe96c7517e936a52460c78326bc5a612 (
plain)
1
2
3
4
5
6
7
8
9
|
Deno.test("no-op", function () {});
Deno.test({
name: "leak interval",
// regression test for sanitizer errors being swallowed with permissions.
permissions: {},
fn() {
setInterval(function () {}, 100000);
},
});
|