We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c15f92 commit 52532a8Copy full SHA for 52532a8
web_src/js/utils/image.test.js
@@ -11,5 +11,5 @@ test('pngChunks', async () => {
11
12
test('pngInfo', async () => {
13
const blob = await (await globalThis.fetch('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAEElEQVQI12OQNZcAIgYIBQAL8gGxdzzM0A==')).blob();
14
- expect(await pngInfo(blob)).toEqual({dppx: 2, width: 2});
+ expect(await pngInfo(blob)).toEqual({width: 2, dppx: 2});
15
});
0 commit comments