it('should return merged static styles in correct order', () => {
    const staticStylesA = { color: 'red', fontSize: 15 }
    const staticStylesB = { color: 'blue', backgroundColor: 'red' }
    const styles = StyleSheet.create({
      a: staticStylesA,