it('should give the pixel density instead of the font scale when the front scale is not present', () => {
   Dimensions.set({
     windowPhysicalPixels: {
       scale: 2,
     },
   });
   expect(PixelRatio.getFontScale()).toEqual(2);
 });
 it('should give the font scale when present', () => {
   expect(PixelRatio.getFontScale()).toEqual(3);
 });