mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
b6afe6a782
commit
ae3b096892
2 changed files with 4 additions and 3 deletions
|
@ -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 () => {
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue