aiao-io/aiao

View on GitHub
apps/dev-elements-react/src/app/menu/Menu.spec.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { IonReactRouter } from '@ionic/react-router';
import { render } from '@testing-library/react';

import Menu from './Menu';

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