@@ -27,7 +27,7 @@ const testHeading = (headingNode, expectedDeprecationCode) => {
2727 assert . strictEqual (
2828 headingNode ?. children [ 0 ] ?. value . substring ( 0 , 9 ) ,
2929 `${ expectedDeprecationCode } : ` ,
30- 'Ill-formed or out-of-order deprecation code.'
30+ 'Ill-formed or out-of-order deprecation code.' ,
3131 ) ;
3232 } catch ( e ) {
3333 throw addMarkdownPathToErrorStack ( e , headingNode ) ;
@@ -39,7 +39,7 @@ const testYAMLComment = (commentNode) => {
3939 assert . match (
4040 commentNode ?. value ?. substring ( 0 , 21 ) ,
4141 / ^ < ! - - Y A M L \r ? \n c h a n g e s : \r ? \n / ,
42- 'Missing or ill-formed YAML comment.'
42+ 'Missing or ill-formed YAML comment.' ,
4343 ) ;
4444 } catch ( e ) {
4545 throw addMarkdownPathToErrorStack ( e , commentNode ) ;
@@ -51,7 +51,7 @@ const testDeprecationType = (paragraphNode) => {
5151 assert . strictEqual (
5252 paragraphNode ?. children [ 0 ] ?. value ?. substring ( 0 , 6 ) ,
5353 'Type: ' ,
54- 'Missing deprecation type.'
54+ 'Missing deprecation type.' ,
5555 ) ;
5656 } catch ( e ) {
5757 throw addMarkdownPathToErrorStack ( e , paragraphNode ) ;
@@ -74,7 +74,7 @@ for (let i = 0; i < tree.children.length; i++) {
7474 assert . strictEqual (
7575 deprecationCodeAsText ,
7676 expectedDeprecationCode ,
77- 'Deprecation codes are not ordered correctly.'
77+ 'Deprecation codes are not ordered correctly.' ,
7878 ) ;
7979 } catch ( e ) {
8080 throw addMarkdownPathToErrorStack ( e , node ) ;
0 commit comments