Chop down the logs
parent
e8dbc0aea4
commit
0a41ce53f6
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue