@@ -229,7 +229,7 @@ describe('render', function () {
229229 const output = window . marked ( '[alt text](http://url)' ) ;
230230
231231 expect ( output ) . toMatchInlineSnapshot (
232- ' "<p><a href="http://url" target="_blank" rel="noopener">alt text</a></p>"' ,
232+ ` "<p><a href="http://url" target="_blank" rel="noopener">alt text</a></p>"` ,
233233 ) ;
234234 } ) ;
235235
@@ -241,23 +241,23 @@ describe('render', function () {
241241 const output = window . marked ( '[alt text](http://www.example.com)' ) ;
242242
243243 expect ( output ) . toMatchInlineSnapshot (
244- ' "<p><a href="http://www.example.com" target="_blank" rel="noopener">alt text</a></p>"' ,
244+ ` "<p><a href="http://www.example.com" target="_blank" rel="noopener">alt text</a></p>"` ,
245245 ) ;
246246 } ) ;
247247
248248 test ( 'disabled' , async function ( ) {
249249 const output = window . marked ( "[alt text](http://url ':disabled')" ) ;
250250
251251 expect ( output ) . toMatchInlineSnapshot (
252- ' "<p><a href="javascript:void(0)" target="_blank" rel="noopener" disabled>alt text</a></p>"' ,
252+ ` "<p><a href="javascript:void(0)" target="_blank" rel="noopener" disabled>alt text</a></p>"` ,
253253 ) ;
254254 } ) ;
255255
256256 test ( 'target for absolute path' , async function ( ) {
257257 const output = window . marked ( "[alt text](http://url ':target=_self')" ) ;
258258
259259 expect ( output ) . toMatchInlineSnapshot (
260- ' "<p><a href="http://url" target="_self" >alt text</a></p>"' ,
260+ ` "<p><a href="http://url" target="_self">alt text</a></p>"` ,
261261 ) ;
262262 } ) ;
263263
@@ -275,7 +275,7 @@ describe('render', function () {
275275 ) ;
276276
277277 expect ( output ) . toMatchInlineSnapshot (
278- ' "<p><a href="http://url" target="_blank" rel="noopener" class="someCssClass">alt text</a></p>"' ,
278+ ` "<p><a href="http://url" target="_blank" rel="noopener" class="someCssClass">alt text</a></p>"` ,
279279 ) ;
280280 } ) ;
281281
@@ -285,15 +285,15 @@ describe('render', function () {
285285 ) ;
286286
287287 expect ( output ) . toMatchInlineSnapshot (
288- `"<p><a href="http://url" target="_blank" rel="noopener" class="someCssClass anotherCssClass">alt text</a></p>"` ,
288+ `"<p><a href="http://url" target="_blank" rel="noopener" class="someCssClass anotherCssClass">alt text</a></p>"` ,
289289 ) ;
290290 } ) ;
291291
292292 test ( 'id' , async function ( ) {
293293 const output = window . marked ( "[alt text](http://url ':id=someCssID')" ) ;
294294
295295 expect ( output ) . toMatchInlineSnapshot (
296- ' "<p><a href="http://url" target="_blank" rel="noopener" id="someCssID">alt text</a></p>"' ,
296+ ` "<p><a href="http://url" target="_blank" rel="noopener" id="someCssID">alt text</a></p>"` ,
297297 ) ;
298298 } ) ;
299299 } ) ;
0 commit comments