mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
[ci] format
This commit is contained in:
parent
299b4afcab
commit
167ed5486a
1 changed files with 3 additions and 1 deletions
|
@ -65,7 +65,9 @@ describe('SSG images', function () {
|
||||||
it('includes src, width, and height attributes', () => {
|
it('includes src, width, and height attributes', () => {
|
||||||
const image = $('#google');
|
const image = $('#google');
|
||||||
|
|
||||||
expect(image.attr('src')).to.equal(`/_image/googlelogo_color_272x92dp-${HASH}_544x184.webp`);
|
expect(image.attr('src')).to.equal(
|
||||||
|
`/_image/googlelogo_color_272x92dp-${HASH}_544x184.webp`
|
||||||
|
);
|
||||||
expect(image.attr('width')).to.equal('544');
|
expect(image.attr('width')).to.equal('544');
|
||||||
expect(image.attr('height')).to.equal('184');
|
expect(image.attr('height')).to.equal('184');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue