import React from 'react';
import {shallow} from 'enzyme';
import SimilarScoreCard from 'app/components/similarScoreCard';
describe('SimilarScoreCard', function() {
beforeEach(function() {});
afterEach(function() {});
it('renders', function() {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
it('renders with score list', function() {
const wrapper = shallow(
);
expect(wrapper).toMatchSnapshot();
});
});