summaryrefslogtreecommitdiff
path: root/cli/tests/unit/streams_deprecated.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/streams_deprecated.ts')
-rw-r--r--cli/tests/unit/streams_deprecated.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/tests/unit/streams_deprecated.ts b/cli/tests/unit/streams_deprecated.ts
deleted file mode 100644
index 04dbfa3fb..000000000
--- a/cli/tests/unit/streams_deprecated.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-import { assertEquals } from "./test_util.ts";
-
-Deno.test(async function symlinkSyncPerm() {
- const rs = new ReadableStream<string>({
- start(controller) {
- controller.enqueue("hello ");
- controller.enqueue("deno");
- controller.close();
- },
- });
-
- for await (const chunk of rs.getIterator()) {
- assertEquals(typeof chunk, "string");
- }
-});