5

我正在尝试为使用fromJest的组件编写单元测试。我需要模拟,所以我的测试不必等待动画完成。但是,除了“跳过”动画之外,我还需要在我的模拟组件上触发回调。ReactTransitionreact-transition-groupTransitiononExitedTransition

这是我Component.js的使用方式Transition

...
return (
  <Transition
    timeout={1500}
    in={this.state.show}
    onExited={handleExited}>
    {status =>
      <button onClick={this.setState({show: false}) className={`component-${status}`}>button</button>
    }
  </Transition>
)

这是我的Component.test.js

import React from 'react'
import {render, fireEvent} from 'react-testing-library'

import Component from '../Component'

test('check', () => {
  const handleCompletion = jest.fn()
  const {getByText} = render(
    <Component
      onButtonClick={handleCompletion}
    />
  )
  const button = getByText('button')
  fireEvent.click(button)
  expect(handleCompletion).toHaveBeenCalledTimes(1)
})

这个想法是,一旦button单击 a,组件就会动画,然后在完成时触发回调。

如何Transition正确模拟,使其跳过动画但仍触发onExited回调?

4

1 回答 1

2

您可以像这样模拟模块jest.mock

jest.mock('react-transition-group', () => ({
    Transition: (props) => {
        props.onExited() // you can call it asynchronously too, if you wrap it in a timeout
        return <div>
            {props.in ? props.children() : null}
        </div>
    }
}))
于 2018-10-24T19:38:55.227 回答