mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
test: Add apple-touch-icon.png test
This commit is contained in:
parent
c34b8c594f
commit
2c1d6a3bee
1 changed files with 5 additions and 0 deletions
|
@ -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 a new issue