Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created July 25, 2016 17:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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 > div')).to.have.length(2);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment