mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
17 lines
451 B
TypeScript
17 lines
451 B
TypeScript
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||
|
import { assertEquals, unitTest } from "./test_util.ts";
|
||
|
|
||
|
unitTest(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");
|
||
|
}
|
||
|
});
|