/** * @jest-environment node */ import { inBrowser } from '../runtime' describe('runtime (server)', () => { test('inBrowser should be false', async () => { expect(inBrowser()).toBe(false) }) })