mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 05:49:20 -05:00
Format
This commit is contained in:
parent
4c6f37cec3
commit
cec82263c1
3 changed files with 18 additions and 15 deletions
|
@ -68,10 +68,10 @@ test(function newHeaderTest() {
|
||||||
});
|
});
|
||||||
|
|
||||||
const headerDict = {
|
const headerDict = {
|
||||||
"name1": "value1",
|
name1: "value1",
|
||||||
"name2": "value2",
|
name2: "value2",
|
||||||
"name3": "value3",
|
name3: "value3",
|
||||||
"name4": undefined,
|
name4: undefined,
|
||||||
"Content-Type": "value4"
|
"Content-Type": "value4"
|
||||||
};
|
};
|
||||||
const headerSeq = [];
|
const headerSeq = [];
|
||||||
|
@ -123,7 +123,10 @@ test(function headerHasSuccess() {
|
||||||
for (const name in headerDict) {
|
for (const name in headerDict) {
|
||||||
assert(headers.has(name), "headers has name " + name);
|
assert(headers.has(name), "headers has name " + name);
|
||||||
/* tslint:disable-next-line:max-line-length */
|
/* 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 = {
|
const headerEntriesDict = {
|
||||||
"name1": "value1",
|
name1: "value1",
|
||||||
"Name2": "value2",
|
Name2: "value2",
|
||||||
"name": "value3",
|
name: "value3",
|
||||||
"content-Type": "value4",
|
"content-Type": "value4",
|
||||||
"Content-Typ": "value5",
|
"Content-Typ": "value5",
|
||||||
"Content-Types": "value6"
|
"Content-Types": "value6"
|
||||||
|
|
|
@ -148,7 +148,7 @@ export async function main() {
|
||||||
categories: sha1List
|
categories: sha1List
|
||||||
},
|
},
|
||||||
y: {
|
y: {
|
||||||
label: "seconds",
|
label: "seconds"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue