Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Comment out console log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsomunozpomer committed May 29, 2018
1 parent 924339a commit 4019e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __test__/ClusterTSnePlot.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ describe(`ClusterTSnePlot colourize function`, () => {
const randomSeries = randomHighchartsSeriesWithNamesAndMaxPoints(seriesNames, maxPointsPerSeries)

randomSeries.forEach((series) => {
console.log("series name", series.name)
// console.log("series name", series.name)
})
_colourizeClusters(seriesNames, `lightgrey`)(randomSeries).forEach((series) => {
console.log('which series am i looking at', series.name)
// console.log('which series am i looking at', series.name)
series.data.forEach((point) => {
expect(point).not.toHaveProperty(`color`)
})
Expand Down

0 comments on commit 4019e53

Please sign in to comment.