diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-30 11:14:44 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-30 16:35:12 -0400 |
commit | cec82263c1299638b01ecc7a9b54aacb285f7fcb (patch) | |
tree | d6f6a5fe8cf1d8baf7088dce565e93b48cd54e4f /js/fetch_test.ts | |
parent | 4c6f37cec31d51f6d7ad9e815aafd23efe9e1a80 (diff) |
Format
Diffstat (limited to 'js/fetch_test.ts')
-rw-r--r-- | js/fetch_test.ts | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/js/fetch_test.ts b/js/fetch_test.ts index 9d76cb6ba..7e2177350 100644 --- a/js/fetch_test.ts +++ b/js/fetch_test.ts @@ -44,7 +44,7 @@ testPerm({ net: true }, async function fetchBlob() { assertEqual(blob.size, Number(headers.get("Content-Length"))); }); -// Logic heavily copied from web-platform-tests, make +// Logic heavily copied from web-platform-tests, make // sure pass mostly header basic test /* tslint:disable-next-line:max-line-length */ // ref: https://github.com/web-platform-tests/wpt/blob/7c50c216081d6ea3c9afe553ee7b64534020a1b2/fetch/api/headers/headers-basic.html @@ -68,17 +68,17 @@ test(function newHeaderTest() { }); const headerDict = { - "name1": "value1", - "name2": "value2", - "name3": "value3", - "name4": undefined, + name1: "value1", + name2: "value2", + name3: "value3", + name4: undefined, "Content-Type": "value4" }; const headerSeq = []; for (const name in headerDict) { headerSeq.push([name, headerDict[name]]); } - + test(function newHeaderWithSequence() { const headers = new Headers(headerSeq); for (const name in headerDict) { @@ -123,7 +123,10 @@ test(function headerHasSuccess() { for (const name in headerDict) { assert(headers.has(name), "headers has name " + name); /* tslint:disable-next-line:max-line-length */ - assert(!headers.has("nameNotInHeaders"), "headers do not have header: nameNotInHeaders"); + assert( + !headers.has("nameNotInHeaders"), + "headers do not have header: nameNotInHeaders" + ); } }); @@ -145,9 +148,9 @@ test(function headerGetSuccess() { }); const headerEntriesDict = { - "name1": "value1", - "Name2": "value2", - "name": "value3", + name1: "value1", + Name2: "value2", + name: "value3", "content-Type": "value4", "Content-Typ": "value5", "Content-Types": "value6" |