@@ -4,16 +4,22 @@ import React from 'react';
4
4
import expect from 'expect' ;
5
5
import sinon from 'sinon' ;
6
6
import jsdom from 'mocha-jsdom' ;
7
+ import { createRenderer } from 'react-addons-test-utils' ;
7
8
8
9
import toggle from '../toggle' ;
9
10
import RefinementList from '../../../components/RefinementList/RefinementList.js' ;
11
+ import Template from '../../../components/Template.js' ;
10
12
11
13
import expectJSX from 'expect-jsx' ;
12
14
expect . extend ( expectJSX ) ;
13
15
16
+ const helpers = require ( '../../../lib/helpers.js' ) ( 'en-US' ) ;
17
+
14
18
describe ( 'toggle()' , ( ) => {
15
19
jsdom ( { useEach : true } ) ;
16
20
21
+ let renderer = createRenderer ( ) ;
22
+
17
23
context ( 'bad usage' , ( ) => {
18
24
it ( 'throws when no container' , ( ) => {
19
25
expect ( ( ) => {
@@ -123,6 +129,13 @@ describe('toggle()', () => {
123
129
expect ( ReactDOM . render . secondCall . args [ 1 ] ) . toEqual ( container ) ;
124
130
} ) ;
125
131
132
+ it ( 'formats counts' , ( ) => {
133
+ templateProps . templatesConfig = { helpers} ;
134
+ renderer . render ( < Template data = { { count : 1000 } } { ...templateProps } templateKey = "item" /> ) ;
135
+ let out = renderer . getRenderOutput ( ) ;
136
+ expect ( out ) . toEqualJSX ( < div className = { undefined } dangerouslySetInnerHTML = { { __html : '<label class="">\n <input type="checkbox" class="" value="" />\n <span class="">1,000</span>\n</label>' } } /> ) ;
137
+ } ) ;
138
+
126
139
it ( 'with facet values' , ( ) => {
127
140
results = {
128
141
hits : [ { Hello : ', world!' } ] ,
0 commit comments