blob: edd5587107754b725b0f14f70d671f9ff04a13ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import test from "node:test";
test("should not complain about resource and op sanitizers", async (t) => {
// resource
const _file1 = Deno.open("welcome.ts");
await t.test("nested test", () => {
// resource
const _file2 = Deno.open("cat.ts");
// op
crypto.subtle.digest(
"SHA-256",
new TextEncoder().encode("a".repeat(1_000_000)),
);
});
// op
crypto.subtle.digest(
"SHA-256",
new TextEncoder().encode("a".repeat(1_000_000)),
);
});
// TODO(mmastrac): This works, but we don't reliably flush stdout/stderr here, making this test flake
// test("should allow exit", () => {
// // no exit sanitizers
// Deno.exit(123);
// });
|