client-reactnative/__tests__/Chat/ChatDetails/ChatDetailHeader-test.tsx
import React from 'react';
import renderer from 'react-test-renderer';
import ChatDetailHeader from '../../../src/components/Chat/ChatDetails/ChatDetailHeader';
import { roomListProps } from '../../../src/stores/chatStore';
import { Alert } from 'react-native';
const mockRoomDetails:roomListProps = {"avatar": "https://placeimg.com/140/140/any", "counter": 0, "createdAt": `2023-02-20T07:00:17.995Z`, "jid": "34c16b11d97051f3bb6a25654d4bea1234fa812a89cc57631a785f3d0c2ad644@conference.dev.dxmpp.com", "lastUserName": "", "lastUserText": "", "name": "Delete test", "participants": 1, "priority": 0, "roomBackground": "", "roomThumbnail": ""};
const mockDeleteRoomDialog = async () => {
Alert.alert('Delete', 'Do you want to delete this room?', [
{
text: 'Cancel',
onPress: () => console.log('canceled'),
},
{
text: 'Yes',
onPress: () => console.log("asdadasd"),
},
]);
};
test("renders correctly", ()=>{
const tree = renderer.create(
<ChatDetailHeader
currentRoomDetail={mockRoomDetails}
deleteRoomDialog={mockDeleteRoomDialog}
toggleFavourite={()=>console.log()}
/>
).toJSON();
expect(tree).toMatchSnapshot();
})