diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-09 20:25:43 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-10 00:14:28 -0400 |
commit | 35bc9ddf636734a424b8f69ca7a49af071193002 (patch) | |
tree | 2f5e0908859837110ee765968abf6317c200257e /js/unit_tests.ts | |
parent | c29392b25f6a7ade25a8205cabb9c3548e771ca2 (diff) |
Implement deno.readFile()
As an example of how to implement ops that have both sync and async
versions.
Diffstat (limited to 'js/unit_tests.ts')
-rw-r--r-- | js/unit_tests.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/unit_tests.ts b/js/unit_tests.ts index 0e877dea6..efbc7383c 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -3,5 +3,6 @@ // But it can also be run manually: ./out/debug/deno js/unit_tests.ts import "./compiler_test.ts"; import "./console_test.ts"; -import "./os_test.ts"; import "./fetch_test.ts"; +import "./os_test.ts"; +import "./read_file_test.ts"; |