1234567891011121314151617181920212223242526272829 |
- 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(<SimilarScoreCard />);
- expect(container).toBeEmptyDOMElement();
- });
- it('renders with score list', function () {
- const {container} = render(
- <SimilarScoreCard
- scoreList={[
- ['exception:message:character-shingles', null],
- ['exception:stacktrace:application-chunks', 0.8],
- ['exception:stacktrace:pairs', 1],
- ['message:message:character-shingles', 0.5],
- ['unknown:foo:bar', 0.5],
- ]}
- />
- );
- expect(container).toSnapshot();
- });
- });
|