updated tests remove layout

This commit is contained in:
Robert Elliott 2018-11-21 16:41:09 +02:00
parent 24758bc80d
commit fe66aa9623
1 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ describe( 'ReportChart', () => {
const chart = reportChart.find( 'Chart' ); const chart = reportChart.find( 'Chart' );
expect( chart.props().mode ).toEqual( null ); expect( chart.props().mode ).toEqual( null );
expect( chart.props().layout ).toEqual( 'standard' );
} ); } );
test( 'should set the mode prop depending on the active filter', () => { test( 'should set the mode prop depending on the active filter', () => {
@ -77,6 +76,5 @@ describe( 'ReportChart', () => {
const chart = reportChart.find( 'Chart' ); const chart = reportChart.find( 'Chart' );
expect( chart.props().mode ).toEqual( 'item-comparison' ); expect( chart.props().mode ).toEqual( 'item-comparison' );
expect( chart.props().layout ).toEqual( 'comparison' );
} ); } );
} ); } );