[dashboard] add link to export CSV from dashboard (#3280)

* [dashboard] add link to export CSV from dashboard

fixes #1304

* Fix tests
This commit is contained in:
Maxime Beauchemin
2017-08-14 18:25:36 -07:00
committed by GitHub
parent 6841697917
commit 9c6248f3ba
2 changed files with 8 additions and 3 deletions

View File

@@ -17,8 +17,8 @@ describe('SliceCell', () => {
React.isValidElement(<SliceCell {...mockedProps} />),
).to.equal(true);
});
it('renders five links', () => {
it('renders six links', () => {
const wrapper = mount(<SliceCell {...mockedProps} />);
expect(wrapper.find('a')).to.have.length(5);
expect(wrapper.find('a')).to.have.length(6);
});
});