mirror of
https://github.com/denoland/deno.git
synced 2025-02-05 06:05:54 -05:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
Deno.test("no-op", function () {});
|
|
Deno.test({
|
|
name: "leak interval",
|
|
// regression test for sanitizer errors being swallowed with permissions.
|
|
permissions: {},
|
|
fn() {
|
|
setInterval(function () {}, 100000);
|
|
},
|
|
});
|