From b736d4eaa501affa6225a2e1c6a0431efc13c1f9 Mon Sep 17 00:00:00 2001 From: Rohit Paul <113459757+RohitPaul12345@users.noreply.github.com> Date: Thu, 3 Aug 2023 19:33:24 +0530 Subject: [PATCH] Update jest.stubs.js --- jest.stubs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.stubs.js b/jest.stubs.js index 99dd84dc..30e06751 100644 --- a/jest.stubs.js +++ b/jest.stubs.js @@ -5,7 +5,7 @@ if (!window.CSS) window.CSS = {}; window.CSS.supports = () => true; window.URL.createObjectURL = blob => { - return `blob:${serializeURL(location.origin)}/${uuid()}`; + return `blob: ${serializeURL(location.origin)}/${uuid()}`; }; window.URL.revokeObjectURL = url => {};