From 395e1b525d7f41d1f0bb535dd6c26b4ae230e538 Mon Sep 17 00:00:00 2001 From: Seth Etter Date: Mon, 10 Aug 2026 08:39:36 -0500 Subject: [PATCH] Remove stale test file --- test.ts | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 test.ts diff --git a/test.ts b/test.ts deleted file mode 100644 index e393020..0000000 --- a/test.ts +++ /dev/null @@ -1,21 +0,0 @@ -(async () => { - const resp = await fetch("https://bot.devict.org/invites/slack/request", { - method: "POST", - headers: { - "content-type": "application/json", - Authorization: `Bearer 6e7ec9404c0b59a56b972c5235ccbb8f`, - }, - body: JSON.stringify({ - name: "test", - email: "sethetter+test@gmail.com", - reason: "testing", - }), - }); - - if (!resp.ok) { - throw new Error(`failed: (${resp.status}) ${await resp.text()}`); - } - - console.log(`success!`); - console.log(await resp.text()); -})(); -- 2.51.2