]> git.proxmox.com Git - mirror_novnc.git/commitdiff
Fix cached JPEG test
authorPierre Ossman <ossman@cendio.se>
Mon, 15 May 2023 10:55:04 +0000 (12:55 +0200)
committerPierre Ossman <ossman@cendio.se>
Tue, 30 May 2023 18:11:51 +0000 (20:11 +0200)
This test didn't really check anything useful as the end result would be
the same if the second JPEG failed to render.

Fix this by clearing the canvas between the images, so we can tell if
the second image actually rendered or not.

tests/test.jpeg.js

index 6834f03d4ea3a0d564b7ae539bc008edb0e6862f..7580c617163a700ff59eb2ff97dbcbd20d6c5046 100644 (file)
@@ -246,6 +246,8 @@ describe('JPEG Decoder', function () {
 
         testDecodeRect(decoder, 0, 0, 4, 4, data1, display, 24);
 
+        display.fillRect(0, 0, 4, 4, [128, 128, 128, 255]);
+
         let data2 = [
             // JPEG data
             0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46,