OleksiiKachan/wonder-engine

View on GitHub
src/components/aspect-ratio-box/__tests__/index.test.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { render } from '@testing-library/react';
import AspectRatioBox from '../index';

describe('AspectRatioBox', () => {
  it('renders without crashing', () => {
    const { container, unmount } = render(<AspectRatioBox />);
    unmount();
  });
});