запуск mount () в реакции на нативный не возможен? - PullRequest
0 голосов
/ 12 сентября 2018

Этот пост дополняет мой предыдущий вопрос:

предыдущий вопрос

Я столкнулся с тестом, который требует от меня запустить mount в реагировать на нативный.Я просмотрел документацию в jest и обнаружил, что перед запуском набора тестов вам необходимо настроить тестовую среду, способную запустить jsdom для монтирования на работу:

Ссылка на документы: testEnvironment

Из-за ужасной документации.Я не могу понять, как создать класс customEnvironment и что после этого?что мне делать с глобальным объектом?Как использовать его в моем тестовом файле, который в настоящее время выглядит так:

describe('Estimate', () => {
  test('Estimate component Exists', () => {
    const onPressFunction = jest.fn()
    const obj = shallow(
      <Estimate onPress={onPressFunction} />
    )
    expect(obj.find('TextInput').exists()).toBe(true)
  })

  test('Estimate returns value on button press', () => {
    const onPressFunction = jest.fn()
    const obj = shallow(
      <Estimate onPress={onPressFunction} />
    )
    obj.find('TextInput').first().simulate('keypress', { key: '1' })
    obj.find('Button').first().props().onPress()
    expect(onPressFunction.toHaveBeenCalledWith('1'))
  })
})

1 Ответ

0 голосов
/ 13 сентября 2018

Я только что заработал, пришлось импортировать три пакета из npm:

  1. jsdom
  2. реагирует-нативный-макет визуализатора
  3. Шутка-среда-jsdom

Также мой файл setup.mjs выглядит так:

// @note can't import shallow or ShallowWrapper specifically
import Enzyme from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
// eslint-disable-next-line
import { format } from 'prettier'

Enzyme.configure({ adapter: new Adapter() })

// Make Enzyme functions available in all test files without importing
global.shallow = Enzyme.shallow

Enzyme.ShallowWrapper.prototype.jsx = function jsx () {
  const placeholder = '{ something: null }'
  const obj = this.debug({ ignoreProps: false, verbose: true }).replace(/{\.\.\.}/g, placeholder)

  return format(obj, {
    parser: 'babylon',
    filepath: 'test/setup.mjs',
    trailingComma: 'all',
    semi: false,
    arrowParens: 'always',
  })
    .replace(new RegExp(placeholder, 'g'), '{...}')
    .replace(';<', '<')
}
// the html function just throws errors so it's just reset to be the jsx function
Enzyme.ShallowWrapper.prototype.html = Enzyme.ShallowWrapper.prototype.jsx

jest.mock('react-native-device-info', () => {
  return {
    getDeviceLocale: () => 'en',
    getDeviceCountry: () => 'US',
  }
})

jest.mock('react-native-custom-tabs', () => ({
  CustomTabs: {
    openURL: jest.fn(),
  },
}))

jest.mock('react-native-safari-view', () => ({
  isAvailable: jest.fn(),
  show: jest.fn(),
}))



const { JSDOM } = require('jsdom')


const jsdom = new JSDOM()
const { window } = jsdom
function copyProps (src, target) {
  const props = Object.getOwnPropertyNames(src)
    .filter((prop) => typeof target[prop] === 'undefined')
    .map((prop) => Object.getOwnPropertyDescriptor(src, prop))
  Object.defineProperties(target, props)
}

global.window = window
global.document = window.document
global.navigator = {
  userAgent: 'node.js',
}
copyProps(window, global)
Enzyme.configure({ adapter: new Adapter() })

// Ignore React Web errors when using React Native
// allow other errors to propagate if they're relevant
const suppressedErrors = /(React does not recognize the.*prop on a DOM element|Unknown event handler property|is using uppercase HTML|Received `true` for a non-boolean attribute `accessible`|The tag.*is unrecognized in this browser)/
const realConsoleError = console.error
console.error = (message) => {
  if (message.match(suppressedErrors)) {
    return
  }
  realConsoleError(message)
}
require('react-native-mock-render/mock')

Тест выглядит так:

 test('Estimate returns value on button press', () => {
    const onPressFunction = jest.fn()
    const tree = mount(
      <Estimate onPress={onPressFunction} />
    )
    console.log(tree.children().first().html())
  })

Работает как шарм!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...