diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 13:21:33 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-13 13:21:33 +0900 |
| commit | 9cf811b048c03d093871b21c0a357813746378af (patch) | |
| tree | 264c4614f7e2178d237100f139097b16ac8bcfa8 /test | |
| parent | Update index.ts (#7343) (diff) | |
| download | misskey-9cf811b048c03d093871b21c0a357813746378af.tar.gz misskey-9cf811b048c03d093871b21c0a357813746378af.tar.bz2 misskey-9cf811b048c03d093871b21c0a357813746378af.zip | |
test: Add apple-touch-icon.png test
Diffstat (limited to 'test')
| -rw-r--r-- | test/fetch-resource.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/fetch-resource.ts b/test/fetch-resource.ts index 6f976faa76..bd3a325dc2 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', () => { |