Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created July 25, 2016 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeaholicguy/aef08cda5ccb2142ea87263d65663f36 to your computer and use it in GitHub Desktop.
Save codeaholicguy/aef08cda5ccb2142ea87263d65663f36 to your computer and use it in GitHub Desktop.
import TrackList from './TrackList';
import {shallow} from 'enzyme';
describe('TrackList', () => {
it('shows two tracks', () => {
const props = {
tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }]
};
const element = shallow(<TrackList {...props} />);
expect(element.find('div')).to.have.length(2);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment