aiao-io/aiao

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

Summary

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

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

import ElementsEditorPage from './ElementsEditor';

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