describe('#shouldFetch()', () => {
  test('returns true for any value that is not an object', () => {
    expect(ApiResponseHelper.shouldFetch(undefined)).toBe(true);
    expect(ApiResponseHelper.shouldFetch(null)).toBe(true);
    expect(ApiResponseHelper.shouldFetch(1)).toBe(true);