From bd88e56cbc6e64da471b379f996bac6c564a7e1e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 4 Nov 2018 15:36:46 -0800 Subject: Add deno.Buffer (#1121) Do not confuse this with Node's Buffer. This is a direct port of Go's bytes.Buffer - it allows buffering of Reader and Writer objects. --- js/unit_tests.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'js/unit_tests.ts') diff --git a/js/unit_tests.ts b/js/unit_tests.ts index 8f9f4d043..69a14185c 100644 --- a/js/unit_tests.ts +++ b/js/unit_tests.ts @@ -4,6 +4,7 @@ // But it can also be run manually: ./out/debug/deno js/unit_tests.ts import "../website/app_test.js"; import "./blob_test.ts"; +import "./buffer_test.ts"; import "./chmod_test.ts"; import "./compiler_test.ts"; import "./console_test.ts"; -- cgit v1.2.3