0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

[ci] format

This commit is contained in:
Bjorn Lu 2024-06-21 16:14:12 +00:00 committed by astrobot-houston
parent b6afe6a782
commit ae3b096892
2 changed files with 4 additions and 3 deletions

View file

@ -489,10 +489,10 @@ describe('astro:image', () => {
$ = cheerio.load(html);
let $img = $('img');
assert.equal($img.length, 3)
assert.equal($img.length, 3);
$img.each((_, el) => {
assert.equal(el.attribs.src?.startsWith('/_image'), true);
})
});
});
it('properly handles remote images', async () => {

View file

@ -16,7 +16,8 @@ export function remarkCollectImages() {
if (node.type === 'imageReference') {
const imageDefinition = definition(node.identifier);
if (imageDefinition) {
if (shouldOptimizeImage(imageDefinition.url)) imagePaths.add(decodeURI(imageDefinition.url));
if (shouldOptimizeImage(imageDefinition.url))
imagePaths.add(decodeURI(imageDefinition.url));
}
}
});