UNPKG

salsify-experiences-sdk

Version:

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

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