UNPKG

salsify-experiences-sdk

Version:

SDK to be used by commerce websites to implement product experiences.

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