Fix assets test and favicon type (#7344)

* fix

* koa-faviconはimage/x-iconがデフォルトらしい

* シンプルに

* faviconなど
This commit is contained in:
MeiMei 2021-03-13 23:22:54 +09:00 committed by GitHub
parent 9e634360fa
commit 7d02b36092
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 9 deletions

View file

@ -110,7 +110,7 @@ export function connectStream(user: any, channel: string, listener: (message: Re
});
}
export const simpleGet = async (path: string, accept: string): Promise<{ status?: number, type?: string, location?: string }> => {
export const simpleGet = async (path: string, accept = '*/*'): Promise<{ status?: number, type?: string, location?: string }> => {
// node-fetchだと3xxを取れない
return await new Promise((resolve, reject) => {
const req = http.request(`http://localhost:${port}${path}`, {