import React from 'react'; import { mount } from 'enzyme'; import { describe, it } from 'mocha'; import { expect } from 'chai'; import { slice } from './fixtures'; import SliceCell from '../../../javascripts/dashboard/components/SliceCell'; describe('SliceCell', () => { const mockedProps = { slice, removeSlice: () => {}, expandedSlices: {}, }; it('is valid', () => { expect( React.isValidElement(), ).to.equal(true); }); it('renders five links', () => { const wrapper = mount(); expect(wrapper.find('a')).to.have.length(5); }); });