test: turn on rest debug

This commit is contained in:
H01001000
2022-12-22 01:37:08 +08:00
parent bf0e9e3f55
commit e7e63da614
3 changed files with 6 additions and 3 deletions

View File

@@ -14,7 +14,8 @@ const ltsID = 379643682984296448n
describe('[member] Member tests', async () => {
const rest = createRestManager({
token
token,
debug: console.log
})
describe('Get members', () => {

View File

@@ -7,7 +7,8 @@ import { CACHED_COMMUNITY_GUILD_ID, token } from './utils.js'
describe('[role] Role tests', async () => {
const rest = createRestManager({
token
token,
debug: console.log
})
// Create a role with a reason

View File

@@ -24,7 +24,8 @@ after(async () => {
// waiting for channel
describe.skip('[webhooks] Webhook related tests', async () => {
const rest = createRestManager({
token
token,
debug: console.log
})
let channel: Camelize<DiscordChannel>