describe('useSSR', () => {
  it('should correctly tell if we are in the browser', () => {
    const { result } = renderHook(() => useSSR())
    const { isBrowser, isServer, isNative, device } = result.current
    expect(isBrowser).toBe(true)