/**
 * @jest-environment jsdom
 */

import { inBrowser } from '../runtime'

describe('runtime (browser)', () => {
  test('inBrowser should be true', async () => {
    expect(inBrowser()).toBe(true)
  })
})
