This commit is contained in:
Henry Jameson 2026-08-28 23:14:59 +03:00
commit 42900f6336
9 changed files with 20 additions and 12 deletions

View file

@ -808,11 +808,14 @@ describe('Users store', () => {
)
.mockResolvedValueOnce(
// Revoke Token
new Response(JSON.stringify('Oopsie-woopsie pleroma made a fucky-wucky'), {
status: 500,
statusText: 'Internal Server Error',
headers: { 'Content-Type': 'application/json' },
}),
new Response(
JSON.stringify('Oopsie-woopsie pleroma made a fucky-wucky'),
{
status: 500,
statusText: 'Internal Server Error',
headers: { 'Content-Type': 'application/json' },
},
),
)
vi.stubGlobal('fetch', revokeApi)