@@ -19,17 +19,17 @@ test('mdast-util-definitions', function (t) {
1919 tree = remark ( ) . parse ( '[example]: https://example.com "Example"' )
2020 getDefinition = definitions ( tree )
2121
22- t . deepEqual (
22+ t . deepLooseEqual (
2323 getDefinition ( 'example' ) ,
2424 {
2525 type : 'definition' ,
2626 identifier : 'example' ,
2727 label : 'example' ,
28- url : 'https://example.com' ,
2928 title : 'Example' ,
29+ url : 'https://example.com' ,
3030 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 } ,
3333 indent : [ ]
3434 }
3535 } ,
@@ -41,17 +41,17 @@ test('mdast-util-definitions', function (t) {
4141 tree = remark ( ) . parse ( '[__proto__]: https://proto.com "Proto"' )
4242 getDefinition = definitions ( tree )
4343
44- t . deepEqual (
44+ t . deepLooseEqual (
4545 getDefinition ( '__proto__' ) ,
4646 {
4747 type : 'definition' ,
4848 identifier : '__proto__' ,
4949 label : '__proto__' ,
50- url : 'https://proto.com' ,
5150 title : 'Proto' ,
51+ url : 'https://proto.com' ,
5252 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 } ,
5555 indent : [ ]
5656 }
5757 } ,
0 commit comments