import {render} from 'sentry-test/reactTestingLibrary';
import SimilarScoreCard from 'sentry/components/similarScoreCard';
describe('SimilarScoreCard', function () {
beforeEach(function () {});
afterEach(function () {});
it('renders', function () {
const {container} = render();
expect(container).toBeEmptyDOMElement();
});
it('renders with score list', function () {
const {container} = render(
);
expect(container).toSnapshot();
});
});