Skip to content

Commit

Permalink
remove helper unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
mgamis-msft committed Sep 12, 2024
1 parent a76fa9f commit 9c3fcb5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions packages/react-components/tests/browser/VideoGallery.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,16 +149,3 @@ test.describe('VGL - VideoGallery tests', () => {
await expect(component).toHaveScreenshot('VGL-4-2-videogallery-after-spotlight.png');
});
});

const createMockVideoStream = (): HTMLElement => {
const mockVideoElement = document.createElement('div');
mockVideoElement.style.width = '100%';
mockVideoElement.style.height = '100%';
mockVideoElement.style.textAlign = 'center';
const imageElement = document.createElement('img');
imageElement.src = 'images/screenshare-example.png';
imageElement.style.maxWidth = decodeURIComponent('100%25');
imageElement.style.maxHeight = decodeURIComponent('100%25');
mockVideoElement.appendChild(imageElement);
return mockVideoElement as HTMLElement;
};

0 comments on commit 9c3fcb5

Please sign in to comment.