We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d7281 commit 1607c31Copy full SHA for 1607c31
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