import React from 'react'; import {shallow} from 'enzyme'; import ScoreBar from 'app/components/scoreBar'; describe('ScoreBar', function() { beforeEach(function() {}); afterEach(function() {}); it('renders', function() { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it('renders vertically', function() { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it('renders with score = 0', function() { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it('renders with score > max score', function() { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it('renders with < 0 score', function() { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); it('has custom palette', function() { const wrapper = shallow( ); expect(wrapper).toMatchSnapshot(); }); });