Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/28626/head
Michael Telatynski 2024-12-03 18:06:05 +00:00
parent d0fea745bb
commit cfdfc4e640
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ test.describe("Device verification", () => {
// feed the QR code into the verification request. // feed the QR code into the verification request.
const qrData = await readQrCode(infoDialog); const qrData = await readQrCode(infoDialog);
const verifier = await verificationRequest.evaluateHandle( const verifier = await verificationRequest.evaluateHandle(
(request, qrData) => request.scanQRCode(new Uint8Array(qrData)), (request, qrData) => request.scanQRCode(new Uint8ClampedArray(qrData)),
[...qrData], [...qrData],
); );