gpt4 book ai didi

javascript - 如何在 Jest 测试之前配置 beforeEach 函数?

转载 作者:行者123 更新时间:2023-11-28 21:21:13 34 4
gpt4 key购买 nike

我使用 beforeEach在我对 React 组件的测试中就像这样。

let component;
let configProp;

beforeEach(() => {
component = shallow(<MyComponent config={configProp} />);
});

现在,我想改变configProp测试中的变量。像这样:

let component;
let configProp;

beforeEach(() => {
component = shallow(<MyComponent config={configProp} />);
});

// runs before beforeEach for the next test
beforeNext(() => {
const config_1 = {...};
configProp = config_1;
});

test('config_1', () => {
// component now has config=config_1
expect(component.find({config: config_1}).exists());
});

这样的事情可能吗?或者,我们必须 shallow(<MyComponent />)在每个单独的测试中?

现在,我正在使用 it block 为下一个函数进行配置更改。这是合法的吗?像这样:

it('changes configProp', () => {
const config_1 = {...};
configProp = config_1;
});

test('config_1', () => {
expect(component.find({config: config_1}).exists());
});

最佳答案

您可以在测试中的组件上设置新的属性:

test('config_1', () => {
component.setProps({ config: configProp });
...
})

关于javascript - 如何在 Jest 测试之前配置 beforeEach 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51121959/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com