summaryrefslogtreecommitdiff
path: root/cli/tests/unit/streams_deprecated.ts
blob: 892ce39ade3ca88dd36970fe7cef933c23ad6496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018-2022 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");
  }
});