在Reactjs Web应用程序中下拉菜单的Jest测试用例

时间:2019-09-16 11:18:28

标签: javascript reactjs ecmascript-6 jestjs

如何为下拉菜单相关功能编写测试用例,该功能将默认值设置为单击的默认值。这是我的功能:

setDefaultValue = (value, options) => {
    let matchedLabel = options.find(el => el.value === value);
    return [{ value, label: matchedLabel.label }]
}

options是一个对象数组,例如:

options = [
    { value: "", label: "" }, 
    { value: "R", label: "R - Reinvest" },
    ...
]

0 个答案:

没有答案