From c9ae4775c4ff5b8fefbc782cac45e9df6f4ba16b Mon Sep 17 00:00:00 2001 From: primoly <168267431+primoly@users.noreply.github.com> Date: Mon, 29 Apr 2024 20:52:28 +0200 Subject: [PATCH] Add atob underscore test --- tests/integration/btoa/btoa.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/btoa/btoa.js b/tests/integration/btoa/btoa.js index 79ecf81..f9a543a 100644 --- a/tests/integration/btoa/btoa.js +++ b/tests/integration/btoa/btoa.js @@ -374,5 +374,6 @@ export const handler = serveTest(async () => { throws(() => atob("~~")); throws(() => atob("..")); throws(() => atob("--")); + throws(() => atob("__")); } });