@@ -362,7 +362,7 @@ suite('Tests for Expand Abbreviations (HTML)', () => {
362362 } ) ;
363363
364364 test ( 'Expand html when inside script tag with javascript type if js is mapped to html (HTML)' , async ( ) => {
365- await workspace . getConfiguration ( 'emmet' ) . update ( 'includeLanguages' , { " javascript" : " html" } , ConfigurationTarget . Global ) ;
365+ await workspace . getConfiguration ( 'emmet' ) . update ( 'includeLanguages' , { ' javascript' : ' html' } , ConfigurationTarget . Global ) ;
366366 await withRandomFileEditor ( htmlContents , 'html' , async ( editor , _doc ) => {
367367 editor . selection = new Selection ( 24 , 10 , 24 , 10 ) ;
368368 let expandPromise = expandEmmetAbbreviation ( null ) ;
@@ -378,7 +378,7 @@ suite('Tests for Expand Abbreviations (HTML)', () => {
378378 test ( 'Expand html in completion list when inside script tag with javascript type if js is mapped to html (HTML)' , async ( ) => {
379379 const abbreviation = 'span.bye' ;
380380 const expandedText = '<span class="bye"></span>' ;
381- await workspace . getConfiguration ( 'emmet' ) . update ( 'includeLanguages' , { " javascript" : " html" } , ConfigurationTarget . Global ) ;
381+ await workspace . getConfiguration ( 'emmet' ) . update ( 'includeLanguages' , { ' javascript' : ' html' } , ConfigurationTarget . Global ) ;
382382 await withRandomFileEditor ( htmlContents , 'html' , async ( editor , _doc ) => {
383383 editor . selection = new Selection ( 24 , 10 , 24 , 10 ) ;
384384 const cancelSrc = new CancellationTokenSource ( ) ;
@@ -448,7 +448,7 @@ suite('Tests for jsx, xml and xsl', () => {
448448 } ) ;
449449
450450 test ( 'Expand abbreviation with single quotes for jsx' , async ( ) => {
451- await workspace . getConfiguration ( 'emmet' ) . update ( 'syntaxProfiles' , { jsx : { " attr_quotes" : " single" } } , ConfigurationTarget . Global ) ;
451+ await workspace . getConfiguration ( 'emmet' ) . update ( 'syntaxProfiles' , { jsx : { ' attr_quotes' : ' single' } } , ConfigurationTarget . Global ) ;
452452 return withRandomFileEditor ( 'img' , 'javascriptreact' , async ( editor , _doc ) => {
453453 editor . selection = new Selection ( 0 , 6 , 0 , 6 ) ;
454454 await expandEmmetAbbreviation ( { language : 'javascriptreact' } ) ;
0 commit comments