@@ -772,16 +772,16 @@ Source: [${SCHEMA_ID}](file:///${SCHEMA_ID})`
772
772
properties : {
773
773
optionalZipFile : {
774
774
title : 'ZIP file' ,
775
- anyOf : [ { type : " string" , pattern : " \\.zip$" } , { type : " null" } ] ,
775
+ anyOf : [ { type : ' string' , pattern : ' \\.zip$' } , { type : ' null' } ] ,
776
776
default : null ,
777
- description : " Optional ZIP file path." ,
777
+ description : ' Optional ZIP file path.' ,
778
778
} ,
779
779
} ,
780
780
required : [ 'optionalZipFile' ] ,
781
781
additionalProperties : false ,
782
782
} ) ;
783
- let content = 'optionalZipF|i|le:' ;
784
- let result = await parseSetup ( content ) ;
783
+ const content = 'optionalZipF|i|le:' ;
784
+ const result = await parseSetup ( content ) ;
785
785
786
786
assert . strictEqual ( MarkupContent . is ( result . contents ) , true ) ;
787
787
assert . strictEqual (
@@ -806,7 +806,7 @@ Source: [${SCHEMA_ID}](file:///${SCHEMA_ID})`
806
806
$ref : '#/definitions/SecondChoice' ,
807
807
} ,
808
808
] ,
809
- description : " The parent description."
809
+ description : ' The parent description.' ,
810
810
} ,
811
811
} ,
812
812
required : [ 'child' ] ,
@@ -851,15 +851,15 @@ Source: [${SCHEMA_ID}](file:///${SCHEMA_ID})`
851
851
} ,
852
852
} ) ;
853
853
854
- let content = 'ch|i|ld:' ;
855
- let result = await parseSetup ( content ) ;
854
+ const content = 'ch|i|ld:' ;
855
+ const result = await parseSetup ( content ) ;
856
856
assert . strictEqual ( MarkupContent . is ( result . contents ) , true ) ;
857
857
assert . strictEqual (
858
858
( result . contents as MarkupContent ) . value ,
859
859
`#### FirstChoice || SecondChoice\n\nThe parent description.\nThe first choice || The second choice\n\nSource: [${ SCHEMA_ID } ](file:///${ SCHEMA_ID } )`
860
860
) ;
861
861
expect ( telemetry . messages ) . to . be . empty ;
862
- } )
862
+ } ) ;
863
863
} ) ;
864
864
865
865
describe ( 'Bug fixes' , ( ) => {
0 commit comments