Skip to content
Snippets Groups Projects
Commit 9cf811b0 authored by syuilo's avatar syuilo
Browse files

test: Add apple-touch-icon.png test

parent b0d38446
No related branches found
No related tags found
No related merge requests found
......@@ -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', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment