From 7a3e196c608744f2ddd451bf7e4b4399468840aa Mon Sep 17 00:00:00 2001 From: Stef Lewandowski Date: Mon, 9 Dec 2024 08:46:46 +0000 Subject: [PATCH] chore: polyfill web streams in test --- apps/nextjs/jest.setup.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/nextjs/jest.setup.cjs b/apps/nextjs/jest.setup.cjs index f6a95f743..59fc3e5b2 100644 --- a/apps/nextjs/jest.setup.cjs +++ b/apps/nextjs/jest.setup.cjs @@ -1,4 +1,5 @@ require("@testing-library/jest-dom"); +require("web-streams-polyfill/polyfill"); process.env.NEXT_PUBLIC_DEBUG = process.env.DEBUG;