From d95c40cab082e2f7225d27f6f307cd0601fd32b3 Mon Sep 17 00:00:00 2001 From: Skillz4Killz Date: Mon, 25 Oct 2021 15:26:51 +0000 Subject: [PATCH] change: prettier code --- src/ws/mod.ts | 2 +- tests/mod.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ws/mod.ts b/src/ws/mod.ts index b4cd71c47..6560c1bd8 100644 --- a/src/ws/mod.ts +++ b/src/ws/mod.ts @@ -4,7 +4,7 @@ export * from "./events.ts"; export * from "./handle_on_message.ts"; export * from "./heartbeat.ts"; export * from "./identify.ts"; -export * from './process_gateway_queue.ts' +export * from "./process_gateway_queue.ts"; export * from "./resharder.ts"; export * from "./resume.ts"; export * from "./spawn_shards.ts"; diff --git a/tests/mod.ts b/tests/mod.ts index cce31bc4d..6dedbc60c 100644 --- a/tests/mod.ts +++ b/tests/mod.ts @@ -5,8 +5,7 @@ Deno.test("[Bot] - Starting Tests", async (t) => { const bot = createBot({ token: TOKEN || Deno.env.get("DISCORD_TOKEN"), botId: 675412054529540107n, - events: createEventHandlers({ - }), + events: createEventHandlers({}), intents: [], }) as Bot;