test('will pass if on allowlist', () => {
    spy.mockReturnValue(['example.com']);
    expect(checkAllowedHostname('example.com')).toBe(true);
  });