summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/stream_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit_node/stream_test.ts')
-rw-r--r--cli/tests/unit_node/stream_test.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/cli/tests/unit_node/stream_test.ts b/cli/tests/unit_node/stream_test.ts
deleted file mode 100644
index ab81497d1..000000000
--- a/cli/tests/unit_node/stream_test.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-
-import { assert } from "@test_util/std/assert/mod.ts";
-import { fromFileUrl, relative } from "@test_util/std/path/mod.ts";
-import { pipeline } from "node:stream/promises";
-import { createReadStream, createWriteStream } from "node:fs";
-
-Deno.test("stream/promises pipeline", async () => {
- const filePath = relative(
- Deno.cwd(),
- fromFileUrl(new URL("./testdata/lorem_ipsum.txt", import.meta.url)),
- );
- const input = createReadStream(filePath);
- const output = createWriteStream("lorem_ipsum.txt.copy");
-
- await pipeline(input, output);
-
- const content = Deno.readTextFileSync("lorem_ipsum.txt.copy");
- assert(content.startsWith("Lorem ipsum dolor sit amet"));
- try {
- Deno.removeSync("lorem_ipsum.txt.copy");
- } catch {
- // pass
- }
-});