我有componentDidMount
一个常量。我正在尝试涵盖具有三元运算符的 const 的单元测试用例。任何人都可以帮我解决如何涵盖三元运算符条件。
componentDidMount() {
const learnerId = (this.props.routeParam) ?
this.props.routeParam.learnerId :
MaterialModuleList.getQueryString('learnerId');
}