[bugfix] slice description makes charts overflow (#993) (#1010)

This commit is contained in:
Maxime Beauchemin
2016-08-26 15:21:16 -07:00
committed by GitHub
parent b93f9ec598
commit 7eceb140be
4 changed files with 16 additions and 9 deletions

View File

@@ -28,8 +28,8 @@ describe('QueryAndSaveButtons', () => {
});
it('renders buttons with correct text', () => {
expect(wrapper.find('button').contains('Query')).to.eql(true);
expect(wrapper.find('button').contains('Save as')).to.eql(true);
expect(wrapper.find('button').contains(' Query')).to.eql(true);
expect(wrapper.find('button').contains(' Save as')).to.eql(true);
});
});
});