Chop down the logs

pull/2833/head
Alex P 2018-02-22 10:26:46 -08:00
parent e8dbc0aea4
commit 0a41ce53f6
1 changed files with 0 additions and 2 deletions

View File

@ -47,14 +47,12 @@ const defaultGaugeColors = validateGaugeColors(defaultCell.colors)
describe('Dashboards.Reducers.cellEditorOverlay', () => { describe('Dashboards.Reducers.cellEditorOverlay', () => {
it('should show cell editor overlay', () => { it('should show cell editor overlay', () => {
const actual = reducer(initialState, showCellEditorOverlay(defaultCell)) const actual = reducer(initialState, showCellEditorOverlay(defaultCell))
console.log('actual: ', actual)
const expected = { const expected = {
cell: defaultCell, cell: defaultCell,
gaugeColors: defaultGaugeColors, gaugeColors: defaultGaugeColors,
singleStatColors: defaultSingleStatColors, singleStatColors: defaultSingleStatColors,
singleStatType: defaultSingleStatType, singleStatType: defaultSingleStatType,
} }
console.log('expected: ', expected)
expect(actual.cell).to.equal(expected.cell) expect(actual.cell).to.equal(expected.cell)
expect(actual.gaugeColors).to.equal(expected.gaugeColors) expect(actual.gaugeColors).to.equal(expected.gaugeColors)