Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
solonovamax committed Nov 18, 2024
1 parent 0477fb5 commit c10287f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/integration-tests/test/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe('image', function () {

assert.deepStrictEqual(
foundExtensions,
new Set(['html', 'webp', 'avif', 'jpeg', 'png', 'tiff']),
new Set(['html', 'webp', 'avif', 'jpeg', 'jxl', 'png', 'tiff']),
);
});
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<picture>
<source srcset="foo.png?as=avif" type="image/avif">
<source srcset="foo.png?as=jxl" type="image/jxl">
<source srcset="foo.png?as=jpg" type="image/jpeg">
<source srcset="foo.png?as=jxl" type="image/jxl">
<source srcset="foo.png?as=png" type="image/png">
<source srcset="foo.png?as=tiff" type="image/tiff">
<source srcset="foo.png?as=webp" type="image/webp">
Expand Down

0 comments on commit c10287f

Please sign in to comment.