mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
change: prettier code
This commit is contained in:
committed by
GitHub Action
parent
87a6ec14e2
commit
93c4b6f008
@@ -1,14 +1,10 @@
|
||||
import { Bot } from "../../../src/bot.ts";
|
||||
import { assertExists } from "../../deps.ts";
|
||||
|
||||
export async function fetchSingleMemberTest(
|
||||
bot: Bot,
|
||||
guildId: bigint,
|
||||
t: Deno.TestContext
|
||||
) {
|
||||
export async function fetchSingleMemberTest(bot: Bot, guildId: bigint, t: Deno.TestContext) {
|
||||
const fetchedMember = await bot.helpers.fetchMembers(guildId, 0, {
|
||||
userIds: [bot.id],
|
||||
limit: 1,
|
||||
userIds: [bot.id],
|
||||
limit: 1,
|
||||
});
|
||||
|
||||
// Assertions
|
||||
|
||||
+3
-3
@@ -216,9 +216,9 @@ Deno.test("[Bot] - Starting Tests", async (t) => {
|
||||
await fetchSingleMemberTest(bot, guild.id, t);
|
||||
},
|
||||
...sanitizeMode,
|
||||
})
|
||||
])
|
||||
})
|
||||
}),
|
||||
]);
|
||||
});
|
||||
|
||||
await stopBot(bot);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user