mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
15 lines
No EOL
437 B
TypeScript
15 lines
No EOL
437 B
TypeScript
// This file should be excluded from formatting
|
|
Deno.test(
|
|
{ perms: { net: true } },
|
|
async function fetchBodyUsedCancelStream() {
|
|
const response = await fetch(
|
|
"http://localhost:4545/fixture.json",
|
|
);
|
|
assert(response.body !== null);
|
|
|
|
assertEquals(response.bodyUsed, false);
|
|
const promise = response.body.cancel();
|
|
assertEquals(response.bodyUsed, true);
|
|
await promise;
|
|
},
|
|
); |