mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 19:43:29 +01:00
fix: ok statusCode can be 200..299 (#7919)
This commit is contained in:
@@ -253,6 +253,21 @@ test('postEcho', async () => {
|
||||
expect(await api.post('/postEcho', { body: { foo: 'bar' } })).toStrictEqual({ foo: 'bar' });
|
||||
});
|
||||
|
||||
test('201 status code', async () => {
|
||||
mockPool
|
||||
.intercept({
|
||||
path: genPath('/postNon200StatusCode'),
|
||||
method: 'POST',
|
||||
})
|
||||
.reply((t) => ({
|
||||
data: t.body!,
|
||||
statusCode: 201,
|
||||
responseOptions,
|
||||
}));
|
||||
|
||||
expect(await api.post('/postNon200StatusCode', { body: { foo: 'bar' } })).toStrictEqual({ foo: 'bar' });
|
||||
});
|
||||
|
||||
test('Old Message Delete Edge-Case: Old message', async () => {
|
||||
mockPool
|
||||
.intercept({
|
||||
|
||||
Reference in New Issue
Block a user