mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
// 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");
|
|
}
|
|
});
|