slate-test-utils
Version:
> 📣 Love Slate and looking for your next gig? Sirona Medical is [hiring](https://sironamedical.com/about-us/careers/)!
12 lines (11 loc) • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertOutput = exports.isApple = void 0;
const isApple = () => typeof navigator !== 'undefined' && /Mac OS X/.test(navigator.userAgent);
exports.isApple = isApple;
const assertOutput = (input, expectedOutput) => {
const output = expectedOutput;
expect(input.children).toEqual(output.children);
expect(input.selection).toEqual(output.selection);
};
exports.assertOutput = assertOutput;