aiao-io/aiao

View on GitHub
apps/dev-elements-react/src/app/text-editor/TextEditor.spec.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

import { render } from '@testing-library/react';

import TextEditor from './TextEditor';

describe('ELementsEditorPage', () => {
  it('should render successfully', () => {
    const { baseElement } = render(<TextEditor />);
    expect(baseElement).toBeTruthy();
  });
});