Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 14x 394x 42x 40x 40x 40x 14x 14x 61x | /* eslint-env jasmine, jest */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; /** * Change environment support for PointerEvent. */ const emptyFunction = function () {}; export function hasPointerEvent() { return global != null && global.PointerEvent != null; } export function setPointerEvent(bool) { const pointerCaptureFn = (name) => (id) => { if (typeof id !== 'number') { if (process.env.NODE_ENV !== 'production') { console.error('A pointerId must be passed to "%s"', name); } } }; global.PointerEvent = bool ? emptyFunction : undefined; global.HTMLElement.prototype.setPointerCapture = bool ? pointerCaptureFn('setPointerCapture') : undefined; global.HTMLElement.prototype.releasePointerCapture = bool ? pointerCaptureFn('releasePointerCapture') : undefined; } /** * Change environment host platform. */ const platformGetter = jest.spyOn(global.navigator, 'platform', 'get'); export const platform = { clear() { platformGetter.mockClear(); }, get() { return global.navigator.platform === 'MacIntel' ? 'mac' : 'windows'; }, set(name) { switch (name) { case 'mac': { platformGetter.mockReturnValue('MacIntel'); break; } case 'windows': { platformGetter.mockReturnValue('Win32'); break; } default: { break; } } } }; |