summaryrefslogtreecommitdiff
path: root/tests/specs/test/ops_sanitizer_unstable/ops_sanitizer_unstable.ts
blob: 1deb1d5a787c01bf9c546087559cc547d713ac5d (plain)
1
2
3
4
5
6
7
8
9
10
Deno.test("no-op", function () {});
Deno.test({
  name: "leak interval",
  // regression test for sanitizer errors being swallowed with permissions.
  // https://github.com/denoland/deno/pull/18550
  permissions: {},
  fn() {
    setInterval(function () {}, 100000);
  },
});