import { render, screen } from '@testing-library/react'; import { AdditiveForceVisualizer } from "../visualizers"; import React from 'react'; describe('AdditiveForceVisualizer', () => { it('renders correctly', () => { // Render the component const { container } = render( ); // Compare with snapshot expect(container).toMatchSnapshot(); }); });