diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-28 14:57:37 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-28 18:25:15 -0400 |
commit | 8f919465b09e0338148d22459fac70fd5d5c9089 (patch) | |
tree | 1d243eadea28675e60c18270d0e723a6d406a2ef /js/request_test.ts | |
parent | 2b79552dd1d3936c015e3bb07bef8fab09b62a40 (diff) |
Remove @stardazed/streams
This is a regression on several some features in the fetch API. To bring
these back @stardazed/streams simply needs to be ported to TS and
included in the //js directory.
Towards #2608
Diffstat (limited to 'js/request_test.ts')
-rw-r--r-- | js/request_test.ts | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/js/request_test.ts b/js/request_test.ts index 7421544fe..e9e1f5164 100644 --- a/js/request_test.ts +++ b/js/request_test.ts @@ -1,5 +1,5 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { test, assertEquals, assert } from "./test_util.ts"; +import { test, assertEquals } from "./test_util.ts"; test(function fromInit(): void { const req = new Request("https://example.com", { @@ -15,35 +15,3 @@ test(function fromInit(): void { assertEquals(req.url, "https://example.com"); assertEquals(req.headers.get("test-header"), "value"); }); - -test(function fromRequest(): void { - const r = new Request("https://example.com"); - // @ts-ignore - r._bodySource = "ahoyhoy"; - r.headers.set("test-header", "value"); - - const req = new Request(r); - - // @ts-ignore - assertEquals(req._bodySource, r._bodySource); - assertEquals(req.url, r.url); - assertEquals(req.headers.get("test-header"), r.headers.get("test-header")); -}); - -test(async function cloneRequestBodyStream(): Promise<void> { - // hack to get a stream - const stream = new Request("", { body: "a test body" }).body; - const r1 = new Request("https://example.com", { - body: stream - }); - - const r2 = r1.clone(); - - const b1 = await r1.text(); - const b2 = await r2.text(); - - assertEquals(b1, b2); - - // @ts-ignore - assert(r1._bodySource !== r2._bodySource); -}); |