Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeh committed Jan 11, 2023
1 parent dddbff8 commit f489520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/html.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const expectedHtml = ({
<picture class="Picture${cl ? ` ${cl}` : ''}">
${avif ? `<source type="image/avif" srcset="${name}.avif"/>` : ''}
<source type="image/webp" srcset="${name}.webp"/>
<img${imgClass ? ` class="${imgClass}"` : ''}${
lazy ? ` loading="lazy"` : ''
} alt="${alt}"${role ? ` role="${role}"` : ''} src="${name}.${ext}"/>
<img${imgClass ? ` class="${imgClass}"` : ''}${lazy ? ` loading="lazy"` : ''} alt="${alt}"${
role ? ` role="${role}"` : ''
} src="${name}.${ext}"/>
</picture>
`
.trim()
Expand Down

0 comments on commit f489520

Please sign in to comment.