From 34a486a7cb1a4fb38822380c7eb74dbaf699f7ee Mon Sep 17 00:00:00 2001 From: Andrew Watkins Date: Thu, 26 Jan 2017 11:09:04 -0800 Subject: [PATCH] Cleanup comments --- ui/spec/utils/timeSeriesToDygraphSpec.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ui/spec/utils/timeSeriesToDygraphSpec.js b/ui/spec/utils/timeSeriesToDygraphSpec.js index 3db41e5e29..85da96160b 100644 --- a/ui/spec/utils/timeSeriesToDygraphSpec.js +++ b/ui/spec/utils/timeSeriesToDygraphSpec.js @@ -168,8 +168,6 @@ describe('timeSeriesToDygraph', () => { }, }; - // console.log('BEAP EXPECTED', JSON.stringify(expected, null, 2)) - expect(actual.dygraphSeries).to.deep.equal(expected); }); @@ -210,16 +208,6 @@ describe('timeSeriesToDygraph', () => { ]; const actual = timeSeriesToDygraph(influxResponse); - // dygraphSeries: { - // 'm1.f1': { - // axis: 'y', - // strokeWidth, - // }, - // 'm1.f1-1': { - // axis: 'y2', - // strokeWidth, - // }, - // }, const expected = { labels: [ @@ -408,7 +396,6 @@ describe('timeSeriesToDygraph', () => { ], }; - // console.log(actual.timeSeries); expect(actual.labels).to.deep.equal(expected.labels); expect(actual.timeSeries).to.deep.equal(expected.timeSeries); });