This repository has been archived by the owner on Nov 27, 2022. It is now read-only.
Replies: 3 comments 2 replies
-
Couldn't find version numbers for the following packages in the issue:
Can you update the issue to include version numbers for those packages? The version numbers must match the format 1.2.3. |
Beta Was this translation helpful? Give feedback.
0 replies
-
"react-native-tab-view": "^2.15.2", |
Beta Was this translation helpful? Give feedback.
0 replies
-
jest.mock("react-native-tab-view", () => {
const real = jest.requireActual("react-native-tab-view");
return {
...real,
TabView: ({ navigationState, renderTabBar }) => (
<>
{renderTabBar({
navigationState,
})}
</>
),
};
}); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Has anyone written a unit test for react-native-tab-view?
Please provide example
Beta Was this translation helpful? Give feedback.
All reactions