1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/testdata/test/ops_sanitizer_unstable.ts
2023-04-01 16:20:16 -04:00

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);
},
});