Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
Add mocks for VideoRederer and VideoPreview views
Browse files Browse the repository at this point in the history
  • Loading branch information
skyman503 authored Apr 13, 2023
1 parent 00f19f1 commit 8dfe15c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/__mocks__/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import React from 'react';
import { View } from 'react-native';

const {
ParticipantType,
TrackType,
Expand Down Expand Up @@ -112,3 +115,10 @@ export const useBandwidthEstimation = () => {
estimation: null,
};
};

export const VideoRendererView = () => {
return <View />;
};
export const VideoPreviewView = () => {
return <View />;
};

0 comments on commit 8dfe15c

Please sign in to comment.