У меня есть компонент, который выглядит следующим образом:
const MyComponent = ({ anotherComponent = null }) => {
return (
<View>
{anotherComponent}
<Text>{anotherComponent? "with anotherComponent" : "without anotherComponent"}</Text>
</View>
);
};
Как смоделировать AnotherComponent, чтобы я мог передать макет MyComponent?
Можете ли вы сделать что-то вроде этого: const anotherComponent = jest.mock("../src/AnotherComponent", () => "AnotherComponent");
а затем передать еще один компонент в MyComponent?