@@ -19,17 +19,17 @@ test('mdast-util-definitions', function (t) {
19
19
tree = remark ( ) . parse ( '[example]: https://example.com "Example"' )
20
20
getDefinition = definitions ( tree )
21
21
22
- t . deepEqual (
22
+ t . deepLooseEqual (
23
23
getDefinition ( 'example' ) ,
24
24
{
25
25
type : 'definition' ,
26
26
identifier : 'example' ,
27
27
label : 'example' ,
28
- url : 'https://example.com' ,
29
28
title : 'Example' ,
29
+ url : 'https://example.com' ,
30
30
position : {
31
- start : { column : 1 , line : 1 , offset : 0 } ,
32
- end : { column : 41 , line : 1 , offset : 40 } ,
31
+ start : { line : 1 , column : 1 , offset : 0 } ,
32
+ end : { line : 1 , column : 41 , offset : 40 } ,
33
33
indent : [ ]
34
34
}
35
35
} ,
@@ -41,17 +41,17 @@ test('mdast-util-definitions', function (t) {
41
41
tree = remark ( ) . parse ( '[__proto__]: https://proto.com "Proto"' )
42
42
getDefinition = definitions ( tree )
43
43
44
- t . deepEqual (
44
+ t . deepLooseEqual (
45
45
getDefinition ( '__proto__' ) ,
46
46
{
47
47
type : 'definition' ,
48
48
identifier : '__proto__' ,
49
49
label : '__proto__' ,
50
- url : 'https://proto.com' ,
51
50
title : 'Proto' ,
51
+ url : 'https://proto.com' ,
52
52
position : {
53
- start : { column : 1 , line : 1 , offset : 0 } ,
54
- end : { column : 39 , line : 1 , offset : 38 } ,
53
+ start : { line : 1 , column : 1 , offset : 0 } ,
54
+ end : { line : 1 , column : 39 , offset : 38 } ,
55
55
indent : [ ]
56
56
}
57
57
} ,
0 commit comments