mirror of
https://github.com/harish2704/simple-mocha.git
synced 2026-09-10 06:21:08 +00:00
Cleanup tests
This commit is contained in:
+18
-17
@@ -7,7 +7,8 @@ var assert = require('assert');
|
|||||||
|
|
||||||
describe( 'Simple before block + it s ', function(){
|
describe( 'Simple before block + it s ', function(){
|
||||||
|
|
||||||
describe( 'should parse simple test file' , function(){
|
|
||||||
|
describe( 'SimpleMocha instance' , function(){
|
||||||
|
|
||||||
var runner = SimpleMocha.load( __dirname + '/data/dummy.spec.js' );
|
var runner = SimpleMocha.load( __dirname + '/data/dummy.spec.js' );
|
||||||
|
|
||||||
@@ -26,26 +27,26 @@ describe( 'Simple before block + it s ', function(){
|
|||||||
var firsDescribeBlock = describeBlock.children[0];
|
var firsDescribeBlock = describeBlock.children[0];
|
||||||
|
|
||||||
|
|
||||||
it( 'rootDescribeBlock should have child blocks', function(){
|
describe( 'rootDescribeBlock', function(){
|
||||||
assert( firsDescribeBlock instanceof SimpleMocha.DescribeBlock );
|
it( 'should have child blocks', function(){
|
||||||
});
|
assert( firsDescribeBlock instanceof SimpleMocha.DescribeBlock );
|
||||||
|
});
|
||||||
|
|
||||||
it( 'child describeBlock should parse before hook', function(){
|
describe( 'Child describeBlock', function(){
|
||||||
assert( firsDescribeBlock.beforeFn );
|
it( 'should parse before hook', function(){
|
||||||
});
|
assert( firsDescribeBlock.beforeFn );
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
it( 'should parse it blocks', function(){
|
||||||
it( 'child describeBlock should parse it blocks', function(){
|
assert.equal( firsDescribeBlock.its.length, 2 );
|
||||||
assert.equal( firsDescribeBlock.its.length, 2 );
|
firsDescribeBlock.its.forEach( function( itBlk ){
|
||||||
firsDescribeBlock.its.forEach( function( itBlk ){
|
assert( itBlk );
|
||||||
assert( itBlk );
|
assert( itBlk.description );
|
||||||
assert( itBlk.description );
|
assert( itBlk.fn );
|
||||||
assert( itBlk.fn );
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user