aiao-io/aiao

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

Summary

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

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

import CodeEditor from './code-editor';

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