Geoviz state management fix (#6260)

* Fix deckgl getPoints

* Fix CSS

* Fix zoom

* Fix CategoricalDeckGLContainer

* Fix cypress
This commit is contained in:
Beto Dealmeida
2018-11-07 16:51:22 -08:00
committed by GitHub
parent 0584e3629f
commit a57603adb4
13 changed files with 2093 additions and 69 deletions

View File

@@ -11,7 +11,7 @@ describe('getBreakPoints', () => {
it('returns sorted break points', () => {
const fd = { break_points: ['0', '10', '100', '50', '1000'] };
const result = getBreakPoints(fd);
const result = getBreakPoints(fd, []);
const expected = ['0', '10', '50', '100', '1000'];
expect(result).toEqual(expected);
});