0

我正在尝试使用测试库测试组件。我面临的问题是如何在input. 通常这可以通过以下方式实现:

const inputName = screen.getByPlaceholderText(/name/i)

fireEvent.click(inputName)
fireEvent.change(inputName, { target: { value: 'test name' } })

但在我的情况下,我使用库cleave.js来格式化输入,似乎fireEvent.change无法引入文本。

有谁知道如何解决这个问题?

4

2 回答 2

1

我建议您使用@testing-library/user-event来测试这样的交互。

假设您有以下呈现 Cleave.js 信用卡输入的组件。

const TestComponent = () => {
  return (
    <Cleave placeholder="Enter CC number" options={{ creditCard: true }} />
  );
};

您可以在测试中使用@testing-library/user-event'type函数来模拟用户的输入。

import { screen, render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';

it('tests formatted input', () => {
    render(<TestComponent />);
    const input = screen.getByPlaceholderText('Enter CC number');
    userEvent.type(input, '123412345123456');
    expect(input.value).toBe('1234 12345 123456');
});
于 2021-03-18T18:03:01.620 回答
0

这就是我如何让我的工作以多步形式工作,其中第 1 步里面有一个 cleave.js 组件。对表单库使用 react-hook-form

 it('should test formatted input', async () => {
const { getByTestId } = render(<ProviderTestComponent><Step1 {...defaultProps} /></ProviderTestComponent>)

const arrayOfInputs = [
  {
    dataTestId: 'test',
    testInput: '12345'
  },
  {
    dataTestId: 'test.day',
    testInput: '11'
  },
  {
    dataTestId: 'test.month',
    testInput: '11'
  },
  {
    dataTestId: 'test.year',
    testInput: '1950'
  },

]

arrayOfInputs.forEach((item) => {
  const inputField = getByTestId(item.dataTestId)
  userEvent.type(inputField, item.testInput) 
})

const nextButton = getByTestId('step1-next')
fireEvent.click(nextButton)

await waitFor(() => expect(handleOnSubmitMock).toHaveBeenCalled()) 
// ^ this needs to be awaited else the validation won't run for react-hook-form before cleave.js is finished

})
于 2021-06-11T19:03:51.097 回答