test: Add apple-touch-icon.png test
This commit is contained in:
parent
b0d38446d7
commit
9cf811b048
|
@ -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', () => {
|
||||
|
|
Loading…
Reference in New Issue