diff --git a/test/simple-mocha.spec.js b/test/simple-mocha.spec.js index 04f9b1b..41b8000 100644 --- a/test/simple-mocha.spec.js +++ b/test/simple-mocha.spec.js @@ -38,7 +38,14 @@ describe( 'Simple before block + it s ', function(){ it( 'child describeBlock should parse it blocks', function(){ assert.equal( firsDescribeBlock.its.length, 2 ); + firsDescribeBlock.its.forEach( function( itBlk ){ + assert( itBlk ); + assert( itBlk.description ); + assert( itBlk.fn ); + }); }); + + }); })