VideoPlayer.test.tsx 274 B

12345678
  1. import React from 'react'
  2. import { mount } from 'enzyme'
  3. import VideoPlayer from '@/shared/components/VideoPlayer'
  4. describe('VideoPlayer component', () => {
  5. it('Should render Video Player correctly', () => {
  6. expect(mount(<VideoPlayer src="" />)).toBeDefined()
  7. })
  8. })