@@ -23,7 +23,7 @@ test('comment with description only', () => {
2323 summary : 'A simple route' ,
2424 } ;
2525
26- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
26+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
2727} ) ;
2828
2929test ( 'comment with description and summary' , ( ) => {
@@ -40,7 +40,7 @@ test('comment with description and summary', () => {
4040 description : 'This is a description' ,
4141 } ;
4242
43- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
43+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
4444} ) ;
4545
4646test ( 'comment with description and summary with empty tags' , ( ) => {
@@ -64,7 +64,7 @@ test('comment with description and summary with empty tags', () => {
6464 } ,
6565 } ;
6666
67- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
67+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
6868} ) ;
6969
7070test ( 'comment with description and summary with tags' , ( ) => {
@@ -86,7 +86,7 @@ test('comment with description and summary with tags', () => {
8686 } ,
8787 } ;
8888
89- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
89+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
9090} ) ;
9191
9292test ( 'comment with description and multi-line markdown summary' , ( ) => {
@@ -107,7 +107,7 @@ test('comment with description and multi-line markdown summary', () => {
107107 description : 'This is a description\n\n```\nThis is a code block\n```' ,
108108 } ;
109109
110- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
110+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
111111} ) ;
112112
113113test ( 'comment with a summary and tags' , ( ) => {
@@ -126,7 +126,7 @@ test('comment with a summary and tags', () => {
126126 } ,
127127 } ;
128128
129- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
129+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
130130} ) ;
131131
132132test ( 'comment with a summary, description, and a tag in the middle of the description' , ( ) => {
@@ -150,5 +150,5 @@ test('comment with a summary, description, and a tag in the middle of the descri
150150 } ,
151151 } ;
152152
153- assert . deepStrictEqual ( parseJSDoc ( comment ) , expected ) ;
153+ assert . deepEqual ( parseJSDoc ( comment ) , expected ) ;
154154} ) ;
0 commit comments