使用React Suspense和React.lazy子组件进行的Jest / Enzyme类组件测试

时间:2018-12-13 19:32:38

标签: javascript reactjs testing jestjs enzyme

所以我将类组件中使用的导入转换为React.lazy import api并将其包装在Suspense标记中。当我测试该类组件时,酶会引发错误"Enzyme Internal Error: unknown node with tag 13"。有没有一种方法可以渲染和测试延迟加载的组件的安装,而不是使用浅渲染?

我已经尝试过异步等待,直到延迟加载的承诺得到解决,但这都不起作用,就像这样:

it('async await mount', () async () => {
  const wrapper = await mount(<Component />)
}

这是示例代码:

Component.js

import React, { PureComponent, Suspense } from 'react'

const ChildComponent = React.lazy(() => import('../ChildComponent'))

export default class Component extends PureComponent {
  constructor() {
      super()
      this.state = {
          example: null
      }
  }

  doSomething = () => this.setState({
      example: 'example'
  })

  render() {
    return (
      <div>
        <p>Example</p>
        <Suspense fallback={<div>...loading</div>}>
            <ChildComponent 
               example={this.state.example}
               doSomething={this.doSomething}
            />
        </Suspense>
      </div>
    )
  }
}

Component.test.js

import React from 'react'
import renderer from 'react-test-renderer'
import { mount } from 'enzyme'
import Component from '../../Component'

describe('Component', () => {
    // snapshot renders loading and not children
    it('example snapshot of tree', () => {
        const tree = renderer.create(<Component />).toJSON()
        expect(tree).toMatchSnapshot()
    })

    it('example mount test', () => {
        // this test fails and throws error I state above
        const wrapper = mount(<Component />)
        wrapper.setState({ example: 'example' })
        expect(wrapper.state.example).toBe('example')
    })
})

我读到Enzyme还不支持React 16.6 Suspense API,但是我想知道是否仍然有一种方法可以测试安装的API,因此我可以使用Enzyme的simulatefind API之类的东西

1 个答案:

答案 0 :(得分:1)

解决方案

ChuckJHardy链接的GitHub问题已合并并发布。从1.14.0开始,您现在可以在酶中使用mount API。

参考

https://github.com/airbnb/enzyme/pull/1975