mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
23f772061d
Reviewed By: cpojer Differential Revision: D2872990 fb-gh-sync-id: 34c644ec79b424954a14e049b996c658f6b69610
25 lines
643 B
JavaScript
25 lines
643 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const PixelRatio = {
|
|
get: jest.genMockFunction().mockReturnValue(2),
|
|
getFontScale: jest.genMockFunction().mockImplementation(
|
|
() => PixelRatio.get()
|
|
),
|
|
getPixelSizeForLayoutSize: jest.genMockFunction().mockImplementation(
|
|
layoutSize => Math.round(layoutSize * PixelRatio.get())
|
|
),
|
|
roundToNearestPixel: jest.genMockFunction().mockImplementation(
|
|
layoutSize => {
|
|
const ratio = PixelRatio.get();
|
|
return Math.round(layoutSize * ratio) / ratio;
|
|
}
|
|
),
|
|
startDetecting: jest.genMockFunction(),
|
|
};
|
|
|
|
module.exports = PixelRatio;
|