Code highlighting test

This is test post on netlify.

Some code

This code is to test css of code highlight. This is prism highlighting.

// @flow

import 'react-native'
import React from 'react' // eslint-ignore-line
import renderer from 'react-test-renderer'

import { HeaderButton } from '../header-button'
import { AppIcon } from '../../app-icon/app-icon'

jest.mock('../../with-android-back', () => () => 'WithAndroidBack')

test('Must render with default props', () => {
  const c = renderer.create(<HeaderButton />)

  expect(c.toJSON()).toMatchSnapshot()
})

test('Must render with all props', () => {
  const c = renderer.create(
    <HeaderButton
      Icon={AppIcon}
      iconName="ok"
      text="test"
      style={{ marginTop: 111 }}
    />,
  )

  expect(c.toJSON()).toMatchSnapshot()
})