0
URLパラメータを持つReactコンポーネントがあります。テストを実行してコンポーネントをマウントするとき、パラメータは常に定義されていません。その結果、テストを中断します。私はそれらを定数、小道具としてハードコーディングしようとしましたが、それはまだ動作しません。私が試すことができる他のアイデア?React Router v4 paramsがマウント時にユニットテストを中断する
import React, { Component } from 'react';
class BarcodePage extends Component {
constructor(props) {
super(props);
}
componentDidMount() {
const { SKU, ID } = this.props.match.params
}
render() {
return (
<h1>Barcode view {SKU} {ID}</h1>
);
}
}
export default BarcodePage;
import React from 'react';
import { shallow } from 'enzyme';
import BarcodePage from './BarcodePage';
const component = mount(
<BarcodePage params={{SKU: '1111', ID: '2121212' }} />
);
describe('<BarcodePage />',() => {
it('render one header',() => {
expect(component.find('h1').length).toBe(1);
});
})
おかげでそんなに。一番小さいものが私に頭痛を与えていた。 – Jimi