Hello, a common pattern is to test components via their testID or accessibilityLabel attributes. Would it be possible to forward any other props like this to the Image component?
Example Jest test:
it("sets the source image correctly", () => {
const view = render(<MyComponent />);
const image = view.getByTestId("some_image");
expect(image.props.source.uri).toBe("https://some/image.png");
});