UNPKG

react-native-material-ui

Version:
41 lines (37 loc) 1.11 kB
import { Platform } from 'react-native'; import getPlatformElevationIos from '../getPlatformElevation.ios'; import getPlatformElevationAndroid from '../getPlatformElevation.android'; import { black } from '../colors'; const elevation = 4; describe('getPlatformElevation', () => { it('returns empty object if elevation is not legal', () => { // //////////// // ACT // //////////// const result = getPlatformElevationIos(0); // //////////// // ASSERTS // //////////// expect(result).toMatchSnapshot(); }); it('iOS', () => { // //////////// // ACT // //////////// const result = getPlatformElevationIos(elevation); // //////////// // ASSERTS // //////////// expect(result).toMatchSnapshot(); }); it('android', () => { // //////////// // ACT // //////////// const result = getPlatformElevationAndroid(elevation); // //////////// // ASSERTS // //////////// expect(result).toMatchSnapshot(); }); });