diff options
| author | Casper Beyer <caspervonb@pm.me> | 2021-10-11 23:00:33 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-11 17:00:33 +0200 |
| commit | 1683044ed97953cb1dbfc0080440d5c4cc47bd2e (patch) | |
| tree | e23604c28b8988f76984189c23f88b73415935a1 /cli/tests/testdata/test/ops_sanitizer_unstable.ts | |
| parent | 3b2cb8e7113b19344209eddc8bc1bd447fcec4ea (diff) | |
feat: provide ops details for ops sanitizer failures (#12188)
Diffstat (limited to 'cli/tests/testdata/test/ops_sanitizer_unstable.ts')
| -rw-r--r-- | cli/tests/testdata/test/ops_sanitizer_unstable.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/ops_sanitizer_unstable.ts b/cli/tests/testdata/test/ops_sanitizer_unstable.ts new file mode 100644 index 000000000..92f7bb888 --- /dev/null +++ b/cli/tests/testdata/test/ops_sanitizer_unstable.ts @@ -0,0 +1,4 @@ +Deno.test("no-op", function () {}); +Deno.test("leak interval", function () { + setInterval(function () {}); +}); |
