[ci] format

This commit is contained in:
matthewp 2022-08-22 19:49:45 +00:00 committed by fredkbot
parent 457e559cd5
commit a20e811795
2 changed files with 4 additions and 2 deletions

View file

@ -85,7 +85,7 @@ describe('SSG images', function () {
verifyImage(`_image/googlelogo_color_272x92dp-${HASH_WITH_QUERY}_544x184.webp`, {
width: 544,
height: 184,
type: 'webp'
type: 'webp',
});
});
});

View file

@ -145,7 +145,9 @@ describe('SSR images - build', function () {
expect(searchParams.get('f')).to.equal('webp');
expect(searchParams.get('w')).to.equal('544');
expect(searchParams.get('h')).to.equal('184');
expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal(true);
expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal(
true
);
});
});
});