1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +12:00

Some further mock fixes.

This commit is contained in:
mike12345567 2024-05-15 14:50:04 +01:00
parent a8e12dfb6b
commit e98ad4f04c

View file

@ -17,8 +17,10 @@ module FetchMock {
raw: () => {
return { "content-type": ["application/json"] }
},
get: () => {
return ["application/json"]
get: (name: string) => {
if (name.toLowerCase() === "content-type") {
return ["application/json"]
}
},
},
json: async () => {