mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 05:54:43 -04:00
25 lines
996 B
TypeScript
25 lines
996 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import * as ClickShieldModule from '../../../components/markdown-renderer/replace-components/click-shield/click-shield'
|
|
import type { ClickShieldProps } from '../../../components/markdown-renderer/replace-components/click-shield/click-shield'
|
|
import { YouTubeFrame } from './youtube-frame'
|
|
import { render } from '@testing-library/react'
|
|
import React from 'react'
|
|
|
|
jest.mock('../../../components/markdown-renderer/replace-components/click-shield/click-shield')
|
|
|
|
describe('YoutubeFrame', () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(ClickShieldModule, 'ClickShield').mockImplementation((({ children }) => {
|
|
return <span>This is a click shield for {children}</span>
|
|
}) as React.FC<ClickShieldProps>)
|
|
})
|
|
|
|
it('renders a click shield', () => {
|
|
const view = render(<YouTubeFrame id={'validYoutubeId'} />)
|
|
expect(view.container).toMatchSnapshot()
|
|
})
|
|
})
|