2015-04-24 19:15:11 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
2016-01-28 02:14:12 +00:00
|
|
|
'use strict';
|
2015-04-24 19:15:11 +00:00
|
|
|
|
2016-01-28 02:14:12 +00:00
|
|
|
const PixelRatio = {
|
2016-04-28 02:15:28 +00:00
|
|
|
get: jest.fn().mockReturnValue(2),
|
|
|
|
getFontScale: jest.fn(() => PixelRatio.get()),
|
|
|
|
getPixelSizeForLayoutSize: jest.fn(layoutSize => Math.round(layoutSize * PixelRatio.get())),
|
|
|
|
roundToNearestPixel: jest.fn(layoutSize => {
|
|
|
|
const ratio = PixelRatio.get();
|
|
|
|
return Math.round(layoutSize * ratio) / ratio;
|
|
|
|
}),
|
|
|
|
startDetecting: jest.fn(),
|
2015-04-24 19:15:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = PixelRatio;
|