Skip to content

Commit c10287f

Browse files
committed
Fix integration tests
1 parent 0477fb5 commit c10287f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/integration-tests/test/image.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('image', function () {
8585

8686
assert.deepStrictEqual(
8787
foundExtensions,
88-
new Set(['html', 'webp', 'avif', 'jpeg', 'png', 'tiff']),
88+
new Set(['html', 'webp', 'avif', 'jpeg', 'jxl', 'png', 'tiff']),
8989
);
9090
});
9191
});

packages/core/integration-tests/test/integration/image/reformat-all.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<picture>
22
<source srcset="foo.png?as=avif" type="image/avif">
3-
<source srcset="foo.png?as=jxl" type="image/jxl">
43
<source srcset="foo.png?as=jpg" type="image/jpeg">
4+
<source srcset="foo.png?as=jxl" type="image/jxl">
55
<source srcset="foo.png?as=png" type="image/png">
66
<source srcset="foo.png?as=tiff" type="image/tiff">
77
<source srcset="foo.png?as=webp" type="image/webp">

0 commit comments

Comments
 (0)