@@ -5,6 +5,7 @@ import arrayMutators from 'final-form-arrays'
5
5
import FieldArray from './FieldArray'
6
6
7
7
const onSubmitMock = values => { }
8
+ const sleep = ms => new Promise ( resolve => setTimeout ( resolve , ms ) )
8
9
9
10
describe ( 'FieldArray' , ( ) => {
10
11
it ( 'should warn error if not used inside a form' , ( ) => {
@@ -42,7 +43,7 @@ describe('FieldArray', () => {
42
43
expect ( MyComp ) . toHaveBeenCalledTimes ( 1 )
43
44
} )
44
45
45
- it ( 'should resubscribe if name changes' , ( ) => {
46
+ it ( 'should resubscribe if name changes' , async ( ) => {
46
47
const renderArray = jest . fn ( ( ) => < div /> )
47
48
class Container extends React . Component {
48
49
state = { name : 'dogs' }
@@ -77,9 +78,10 @@ describe('FieldArray', () => {
77
78
78
79
const button = TestUtils . findRenderedDOMComponentWithTag ( dom , 'button' )
79
80
TestUtils . Simulate . click ( button )
81
+ await sleep ( 2 )
80
82
81
- expect ( renderArray ) . toHaveBeenCalledTimes ( 2 )
82
- expect ( renderArray . mock . calls [ 1 ] [ 0 ] . value ) . toEqual ( [ 'Garfield' ] )
83
+ expect ( renderArray ) . toHaveBeenCalledTimes ( 4 )
84
+ expect ( renderArray . mock . calls [ 3 ] [ 0 ] . value ) . toEqual ( [ 'Garfield' ] )
83
85
} )
84
86
85
87
it ( 'should not resubscribe if name changes when not inside a <Form> (duh)' , ( ) => {
@@ -189,7 +191,7 @@ describe('FieldArray', () => {
189
191
TestUtils . Simulate . click ( button )
190
192
} )
191
193
192
- it ( 'should allow field-level validation' , ( ) => {
194
+ it ( 'should allow field-level validation' , async ( ) => {
193
195
const renderArray = jest . fn ( ( ) => < div /> )
194
196
const render = jest . fn ( ( ) => (
195
197
< form >
@@ -219,6 +221,7 @@ describe('FieldArray', () => {
219
221
expect ( typeof renderArray . mock . calls [ 0 ] [ 0 ] . fields . push ) . toBe ( 'function' )
220
222
221
223
renderArray . mock . calls [ 0 ] [ 0 ] . fields . push ( 'c' )
224
+ await sleep ( 2 )
222
225
223
226
expect ( renderArray ) . toHaveBeenCalledTimes ( 3 )
224
227
expect ( renderArray . mock . calls [ 2 ] [ 0 ] . meta . valid ) . toBe ( false )
@@ -289,7 +292,7 @@ describe('FieldArray', () => {
289
292
expect ( result ) . toEqual ( [ 'FOO[0]' , 'FOO[1]' , 'FOO[2]' ] )
290
293
} )
291
294
292
- it ( 'should allow Fields to be rendered' , ( ) => {
295
+ it ( 'should allow Field components to be rendered' , async ( ) => {
293
296
const renderInput = jest . fn ( ( { input } ) => < input { ...input } /> )
294
297
const dom = TestUtils . renderIntoDocument (
295
298
< Form
@@ -318,6 +321,7 @@ describe('FieldArray', () => {
318
321
const button = TestUtils . findRenderedDOMComponentWithTag ( dom , 'button' )
319
322
TestUtils . Simulate . click ( button )
320
323
324
+ await sleep ( 2 )
321
325
expect ( renderInput ) . toHaveBeenCalled ( )
322
326
expect ( renderInput ) . toHaveBeenCalledTimes ( 1 )
323
327
expect ( renderInput . mock . calls [ 0 ] [ 0 ] . input . name ) . toBe ( 'foo[0]' )
@@ -329,14 +333,15 @@ describe('FieldArray', () => {
329
333
expect ( renderInput . mock . calls [ 1 ] [ 0 ] . input . value ) . toBe ( 'dog' )
330
334
331
335
TestUtils . Simulate . click ( button )
336
+ await sleep ( 2 )
332
337
333
338
// notice it doesn't NEED to be called for foo[0] because that field hasn't changed!
334
339
expect ( renderInput ) . toHaveBeenCalledTimes ( 3 )
335
340
expect ( renderInput . mock . calls [ 2 ] [ 0 ] . input . name ) . toBe ( 'foo[1]' )
336
341
expect ( renderInput . mock . calls [ 2 ] [ 0 ] . input . value ) . toBe ( '' )
337
342
} )
338
343
339
- it ( 'should allow Fields to be rendered for complex objects' , ( ) => {
344
+ it ( 'should allow Fields to be rendered for complex objects' , async ( ) => {
340
345
const renderFirstNameInput = jest . fn ( ( { input } ) => < input { ...input } /> )
341
346
const renderLastNameInput = jest . fn ( ( { input } ) => < input { ...input } /> )
342
347
const dom = TestUtils . renderIntoDocument (
@@ -375,6 +380,7 @@ describe('FieldArray', () => {
375
380
376
381
const button = TestUtils . findRenderedDOMComponentWithTag ( dom , 'button' )
377
382
TestUtils . Simulate . click ( button )
383
+ await sleep ( 2 )
378
384
379
385
expect ( renderFirstNameInput ) . toHaveBeenCalled ( )
380
386
expect ( renderFirstNameInput ) . toHaveBeenCalledTimes ( 1 )
@@ -399,6 +405,7 @@ describe('FieldArray', () => {
399
405
expect ( renderLastNameInput ) . toHaveBeenCalledTimes ( 1 )
400
406
401
407
TestUtils . Simulate . click ( button )
408
+ await sleep ( 2 )
402
409
403
410
// notice it doesn't NEED to be called for foo[0] because that field hasn't changed!
404
411
expect ( renderFirstNameInput ) . toHaveBeenCalledTimes ( 3 )
0 commit comments