UNPKG

slate-test-utils

Version:

> 📣 Love Slate and looking for your next gig? Sirona Medical is [hiring](https://sironamedical.com/about-us/careers/)!

18 lines (17 loc) • 438 B
// @ts-ignore window.DataTransfer = class DataTransfer { }; const origin = global.navigator.platform; const cleared = Symbol('clear'); let fakePlatform = null; Object.defineProperty(global.navigator, 'platform', { get() { return fakePlatform === cleared ? origin : fakePlatform || ''; }, }); export const clear = () => { fakePlatform = cleared; }; export const mockPlatform = (agent) => { fakePlatform = agent; };