slate-test-utils
Version:
> 📣 Love Slate and looking for your next gig? Sirona Medical is [hiring](https://sironamedical.com/about-us/careers/)!
7 lines (6 loc) • 306 B
JavaScript
export const isApple = () => typeof navigator !== 'undefined' && /Mac OS X/.test(navigator.userAgent);
export const assertOutput = (input, expectedOutput) => {
const output = expectedOutput;
expect(input.children).toEqual(output.children);
expect(input.selection).toEqual(output.selection);
};