/** * @jest-environment jest-fixed-jsdom */ import { inBrowser } from '../runtime' describe('runtime (browser)', () => { test('inBrowser should be true', async () => { expect(inBrowser()).toBe(true) }) })