diff options
Diffstat (limited to 'js/unit_tests.ts')
-rw-r--r-- | js/unit_tests.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/unit_tests.ts b/js/unit_tests.ts index 7caae5283..96341b4a2 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -92,13 +92,13 @@ test(async function tests_readFileSync() { assertEqual(pkg.name, "deno"); }); -/* test(async function tests_fetch() { const response = await fetch("http://localhost:4545/package.json"); const json = await response.json(); assertEqual(json.name, "deno"); }); +/* test(async function tests_writeFileSync() { const enc = new TextEncoder(); const data = enc.encode("Hello"); |