mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
removed console.log from test
This commit is contained in:
parent
b44b1a3210
commit
25c4a8fa13
1 changed files with 0 additions and 8 deletions
|
@ -262,10 +262,6 @@ define(function (require) {
|
|||
var lng = feature.geometry.coordinates[0];
|
||||
var intensity = feature.properties.count;
|
||||
var array = chart.dataToHeatArray(mapData, max);
|
||||
console.log(array);
|
||||
console.log(feature);
|
||||
console.log(i, array[i][0], array[i][1], array[i][2]);
|
||||
console.log(i, lat, lng, intensity);
|
||||
expect(array[i][0]).to.be(lat);
|
||||
expect(array[i][1]).to.be(lng);
|
||||
expect(array[i][2]).to.be(intensity);
|
||||
|
@ -283,10 +279,6 @@ define(function (require) {
|
|||
var lng = feature.geometry.coordinates[0];
|
||||
var intensity = parseInt(feature.properties.count / max * 100);
|
||||
var array = chart.dataToHeatArray(mapData, max);
|
||||
console.log(array);
|
||||
console.log(feature);
|
||||
console.log(i, array[i][0], array[i][1], array[i][2]);
|
||||
console.log(i, lat, lng, intensity);
|
||||
expect(array[i][0]).to.be(lat);
|
||||
expect(array[i][1]).to.be(lng);
|
||||
expect(array[i][2]).to.be(intensity);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue