Files
frontend-app-authoring/src/editors/VideoEditor/VideoEditor.test.jsx
connorhaugh d8c6b8dddd feat: Text Editor and V2 Editor Framework (#9)
Text Editor and V2 Editor Framework. Documentation to come.
2022-01-25 14:04:57 -05:00

9 lines
250 B
JavaScript

import React from 'react';
import { render, screen } from '@testing-library/react';
import VideoEditor from './VideoEditor';
test('Videoeditor: Basic Render', () => {
render(<VideoEditor />);
expect(screen.findByText('Video')).toBeTruthy();
});