@@ -2,30 +2,30 @@ var test = require('../');
2
2
3
3
var childRan = false ;
4
4
5
- test ( 'parent' , function ( t ) {
6
- t . test ( 'child' , function ( t ) {
5
+ test ( 'parent' , function ( t ) {
6
+ t . test ( 'child' , function ( t ) {
7
7
childRan = true ;
8
8
t . pass ( 'child ran' ) ;
9
9
t . end ( ) ;
10
10
} ) ;
11
11
t . end ( ) ;
12
12
} ) ;
13
13
14
- test ( 'uncle' , function ( t ) {
14
+ test ( 'uncle' , function ( t ) {
15
15
t . ok ( childRan , 'Child should run before next top-level test' ) ;
16
16
t . end ( ) ;
17
17
} ) ;
18
18
19
19
var grandParentRan = false ;
20
20
var parentRan = false ;
21
21
var grandChildRan = false ;
22
- test ( 'grandparent' , function ( t ) {
22
+ test ( 'grandparent' , function ( t ) {
23
23
t . ok ( ! grandParentRan , 'grand parent ran twice' ) ;
24
24
grandParentRan = true ;
25
- t . test ( 'parent' , function ( t ) {
25
+ t . test ( 'parent' , function ( t ) {
26
26
t . ok ( ! parentRan , 'parent ran twice' ) ;
27
27
parentRan = true ;
28
- t . test ( 'grandchild' , function ( t ) {
28
+ t . test ( 'grandchild' , function ( t ) {
29
29
t . ok ( ! grandChildRan , 'grand child ran twice' ) ;
30
30
grandChildRan = true ;
31
31
t . pass ( 'grand child ran' ) ;
@@ -34,7 +34,7 @@ test('grandparent', function(t) {
34
34
t . pass ( 'parent ran' ) ;
35
35
t . end ( ) ;
36
36
} ) ;
37
- t . test ( 'other parent' , function ( t ) {
37
+ t . test ( 'other parent' , function ( t ) {
38
38
t . ok ( parentRan , 'first parent runs before second parent' ) ;
39
39
t . ok ( grandChildRan , 'grandchild runs before second parent' ) ;
40
40
t . end ( ) ;
@@ -43,7 +43,7 @@ test('grandparent', function(t) {
43
43
t . end ( ) ;
44
44
} ) ;
45
45
46
- test ( 'second grandparent' , function ( t ) {
46
+ test ( 'second grandparent' , function ( t ) {
47
47
t . ok ( grandParentRan , 'grandparent ran' ) ;
48
48
t . ok ( parentRan , 'parent ran' ) ;
49
49
t . ok ( grandChildRan , 'grandchild ran' ) ;
0 commit comments