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

import MetalDetection from './metal-detection';

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