test('require sharp-supported content-type', () => {
    const res = new FetchResponse();
    res.headers.set('content-type', 'image/foobar');
    expect(checkMime(res)).toBe(false);
  });