From 9cf811b048c03d093871b21c0a357813746378af Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 13 Mar 2021 13:21:33 +0900 Subject: [PATCH] test: Add apple-touch-icon.png test --- test/fetch-resource.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/fetch-resource.ts b/test/fetch-resource.ts index 6f976faa7..bd3a325dc 100644 --- a/test/fetch-resource.ts +++ b/test/fetch-resource.ts @@ -73,6 +73,11 @@ describe('Fetch resource', () => { const res = await simpleGet('/favicon.ico', 'image/png'); assert.strictEqual(res.status, 200); })); + + it('GET apple-touch-icon.png', async(async () => { + const res = await simpleGet('/apple-touch-icon.png', 'image/png'); + assert.strictEqual(res.status, 200); + })); }); describe('/@:username', () => {