@@ -23,13 +23,15 @@ describe('hitsPerPageSelector()', () => {
23
23
let helper ;
24
24
let results ;
25
25
let autoHideContainer ;
26
+ let consoleLog ;
26
27
27
28
beforeEach ( ( ) => {
28
29
autoHideContainer = sinon . stub ( ) . returns ( Selector ) ;
29
30
ReactDOM = { render : sinon . spy ( ) } ;
30
31
31
32
hitsPerPageSelector . __Rewire__ ( 'ReactDOM' , ReactDOM ) ;
32
33
hitsPerPageSelector . __Rewire__ ( 'autoHideContainer' , autoHideContainer ) ;
34
+ consoleLog = sinon . spy ( window . console , 'log' ) ;
33
35
34
36
container = document . createElement ( 'div' ) ;
35
37
options = [
@@ -90,16 +92,16 @@ describe('hitsPerPageSelector()', () => {
90
92
it ( 'should throw if there is no name attribute in a passed object' , ( ) => {
91
93
options . length = 0 ;
92
94
options . push ( { label : 'Label without a value' } ) ;
93
- expect ( ( ) => {
94
- widget . init ( helper . state , helper ) ;
95
- } ) . toThrow ( / N o o p t i o n i n ` o p t i o n s ` w i t h ` v a l u e : 2 0 ` / ) ;
95
+ widget . init ( helper . state , helper ) ;
96
+ expect ( consoleLog . calledOnce ) . toBe ( true , 'console.log called once' ) ;
97
+ expect ( consoleLog . firstCall . args [ 0 ] ) . toMatch ( / N o o p t i o n i n ` o p t i o n s ` w i t h ` v a l u e : h i t s P e r P a g e ` \( h i t s P e r P a g e : 2 0 \) / ) ;
96
98
} ) ;
97
99
98
100
it ( 'must include the current hitsPerPage at initialization time' , ( ) => {
99
101
helper . state . hitsPerPage = - 1 ;
100
- expect ( ( ) => {
101
- widget . init ( helper . state , helper ) ;
102
- } ) . toThrow ( / N o o p t i o n i n ` o p t i o n s ` w i t h ` v a l u e : - 1 ` / ) ;
102
+ widget . init ( helper . state , helper ) ;
103
+ expect ( consoleLog . calledOnce ) . toBe ( true , 'console.log called once' ) ;
104
+ expect ( consoleLog . firstCall . args [ 0 ] ) . toMatch ( / N o o p t i o n i n ` o p t i o n s ` w i t h ` v a l u e : h i t s P e r P a g e ` \( h i t s P e r P a g e : - 1 \) / ) ;
103
105
} ) ;
104
106
105
107
it ( 'should not throw an error if state does not have a `hitsPerPage`' , ( ) => {
@@ -112,5 +114,6 @@ describe('hitsPerPageSelector()', () => {
112
114
afterEach ( ( ) => {
113
115
hitsPerPageSelector . __ResetDependency__ ( 'ReactDOM' ) ;
114
116
hitsPerPageSelector . __ResetDependency__ ( 'autoHideContainer' ) ;
117
+ consoleLog . restore ( ) ;
115
118
} ) ;
116
119
} ) ;
0 commit comments