mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
e1c51f3c0d
Allows to change behavior of `deno fmt` to use "ASI" setting for semicolons instead of always prefering them, this is done by "--options-semi=asi" flag or `"semi": "asi"` setting in the config file.
46 lines
663 B
TypeScript
46 lines
663 B
TypeScript
Deno.test(
|
|
{ perms: { net: true } },
|
|
async function responseClone() {
|
|
const response =
|
|
await fetch(
|
|
'http://localhost:4545/assets/fixture.json',
|
|
)
|
|
const response1 =
|
|
response.clone()
|
|
assert(
|
|
response !==
|
|
response1,
|
|
)
|
|
assertEquals(
|
|
response.status,
|
|
response1
|
|
.status,
|
|
)
|
|
assertEquals(
|
|
response.statusText,
|
|
response1
|
|
.statusText,
|
|
)
|
|
const u8a =
|
|
new Uint8Array(
|
|
await response
|
|
.arrayBuffer(),
|
|
)
|
|
const u8a1 =
|
|
new Uint8Array(
|
|
await response1
|
|
.arrayBuffer(),
|
|
)
|
|
for (
|
|
let i = 0;
|
|
i <
|
|
u8a.byteLength;
|
|
i++
|
|
) {
|
|
assertEquals(
|
|
u8a[i],
|
|
u8a1[i],
|
|
)
|
|
}
|
|
},
|
|
)
|